JPA property access: getter and setter. Does it support isMethod for boolean? For example,
@Entity
@Access(AccessType.PROPERTY)
public class Foo {
private boolean closed;
public boolean isClosed() {
return this.closed;
}
}
Could not find relevant info in JPA spec 2.1.