public class User extends PanacheEntity {
// @NotNull
// @Size(max = 100, min = 2)
// @Column(length = 100, nullable = false, unique = false)
// public String title; This is the field no more required
@JsonIgnore
@Password
String password;
...... some more fields
}