else if (annName.equals(JPAAnnotationUtils.DATASTORE_IDENTITY))
{
// JPOX extension to allow datastore-identity
identityType = org.jpox.metadata.IdentityType.DATASTORE.toString();
identityColumn = (String)annotationValues.get("column");
GenerationType type = (GenerationType) annotationValues.get("generationType");
identityStrategy = JPAAnnotationUtils.getIdentityStrategyString(type);
identityGenerator = (String) annotationValues.get("generator");
}
else if (annName.equals(JPAAnnotationUtils.TABLE))
{