I have this entity class having more than one primary key (@Id
) which resulted me to use @RooJpaActiveRecord(identifierType = '<IdentifierClass.class>')
and @RooIdentifier(dbManaged=true)
. Yet I am having a problem on accessing Identifier.class
from the entity class itself.
My questions is how can I access Identifier
in the entity class without, at most, removing the @RooJpaActiveRecord(identifierType = '<Identifier.class>')
code.