}
//
for (MethodMapping methodMapping : typeMapping.getMethodMappings()) {
if (methodMapping instanceof CreateMapping) {
CreateMapping createMapping = (CreateMapping)methodMapping;
MethodMapper.Create createMapper = new MethodMapper.Create((Method)createMapping.getMethod().getMethod());
methodMappers.add(createMapper);
Set<MethodMapper.Create> alffl = relatedMethods.get(createMapping.getType());
alffl.add(createMapper);
} else if (methodMapping instanceof DestroyMapping) {
MethodMapper.Destroy destroyMapper = new MethodMapper.Destroy((Method)methodMapping.getMethod().getMethod());
methodMappers.add(destroyMapper);
} else if (methodMapping instanceof FindByIdMapping) {