We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello My entity is configured with @Access(AccessType.PROPERTY), i.e.
@Access(AccessType.PROPERTY)
@Access(AccessType.PROPERTY) public class MyEntity{ private String id; @Id @GeneratedValue public String getId(){ return id; } public void setId(String id){ this.id=id; } }
When trying to persist such entity, I'm getting
com.impetus.kundera.validation.rules.RuleValidationException: xxx.yyy.MyEntity must have an @Id field.
Is @Access(AccessType.PROPERTY) supported ?
The text was updated successfully, but these errors were encountered:
Hi @jvmlet,
AccessType is not supported. I can see an open ticket - #24
Sorry, something went wrong.
It's 7 years old... Any progress /estimations/plans?
@jvmlet Team members can comment on that. I no longer maintain this project.
No branches or pull requests
Hello
My entity is configured with
@Access(AccessType.PROPERTY)
, i.e.When trying to persist such entity, I'm getting
Is
@Access(AccessType.PROPERTY)
supported ?The text was updated successfully, but these errors were encountered: