if (concept.getParentConcept() != null || concept.getClassificationScheme() != null) {
throw new InvalidRequestException("Concept has classificationscheme or has a parent");
}
ClassificationScheme cs = new ClassificationSchemeImpl(this);
cs.addChildConcept(concept);
return cs;
}