public Type getType(String name) {
Type type = getEntityType(name);
if (null == type) {
try {
return new IdentifierType(Class.forName(name));
} catch (ClassNotFoundException e) {
logger.error("system doesn't contains entity {}", name);
}
return null;
} else {