}
@Override
protected String determineColumnName(final ObjectAssociation objectAssociation) {
if (objectAssociation instanceof OneToManyAssociationImpl) {
final OneToManyAssociationImpl fkAssoc = (OneToManyAssociationImpl) objectAssociation;
final FacetedMethod peer = fkAssoc.getFacetedMethod();
final String fullClassName = peer.getIdentifier().getClassName();
final int lastPos = fullClassName.lastIndexOf('.');
return fullClassName.substring(lastPos + 1) + "_" + fkAssoc.getId();
} else {
return objectAssociation.getSpecification().getShortIdentifier();
}
}