blob: cc288a7d0f3a331f9fa9e17cac2bdfd46eae9028 [file] [log] [blame]
package jpql.query;
import java.util.Date;
import javax.persistence.Embeddable;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
@Embeddable
public class ShelfLife {
@Temporal(TemporalType.DATE)
private Date soldDate;
public Date getSoldDate() {
return soldDate;
}
public void setSoldDate(Date soldDate) {
this.soldDate = soldDate;
}
}