ConceptConfig conceptConfig = entity.getConceptConfig();
String conceptCode = conceptConfig.getCode();
// Neighbor display links
List<NeighborNameLabelLinkPair> neighborNameLabelLinkPairs = new ArrayList<NeighborNameLabelLinkPair>();
NeighborsConfig neighborsConfig = conceptConfig
.getNeighborsConfig();
for (IEntity neighborConfigEntity : neighborsConfig) {
NeighborConfig neighborConfig = (NeighborConfig) neighborConfigEntity;
if (neighborConfig.getType().equals("child")) {
String neighborConcept = neighborConfig.getDestination();