JPA

Ovoce
@Entity
public class User {
        @Id
        private long id;

        @NotNull
        @Length
        private String userName;

        private String fullName;
}
14/29