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) {
FindByIdMapping findMapping = (FindByIdMapping)methodMapping;
MethodMapper.FindById findMapper = new MethodMapper.FindById((Method)findMapping.getMethod().getMethod(), findMapping.getType());
methodMappers.add(findMapper);
} else {
throw new UnsupportedOperationException();
}
}