else if (annName.equals(JPAAnnotationUtils.DATASTORE_IDENTITY) && jpaLevel.equalsIgnoreCase("DataNucleus"))
{
// extension to allow datastore-identity
identityType = IdentityType.DATASTORE;
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))
{