I have the following object:
@Id
@GeneratedValue
private long id;
@Column(name = "uniqueId", unique=true)
private String uniqueId;
is it possible to get an object from the DB that has object.uniqueId == "some_unique_id"??
thanks.