dh.setParam(parentInode);
dh.setParam(relationType);
List<com.dotmarketing.portlets.contentlet.business.Contentlet> l = dh.list();
List<Contentlet> conResult = new ArrayList<Contentlet>();
ESContentFactoryImpl conFac = new ESContentFactoryImpl();
for (com.dotmarketing.portlets.contentlet.business.Contentlet fatty : l) {
conResult.add(conFac.convertFatContentletToContentlet(fatty));
}
return conResult;
} catch (Exception e) {
Logger.error(RelationshipFactory.class, "getChildrenClass failed:" + e, e);
throw new DotRuntimeException(e.toString());