blob: fc3b7ed35875be1ce931defee0ea2dc6fc4c1bf3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
******************************************************************************/
package org.eclipse.persistence.jpars.test.model.employee;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Lob;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
@NamedQueries({
@NamedQuery(
name = "EmployeeAddress.getRegion",
query = "SELECT u.postalCode, u.province, u.street FROM EmployeeAddress u"
),
@NamedQuery(
name = "EmployeeAddress.getById",
query = "SELECT u FROM EmployeeAddress u where u.id = :id"
),
@NamedQuery(
name = "EmployeeAddress.updatePostalCode",
query = "UPDATE EmployeeAddress u SET u.postalCode = :postalCode where u.id = :id"
),
@NamedQuery(
name = "EmployeeAddress.getAll",
query = "SELECT u FROM EmployeeAddress u"
),
@NamedQuery(
name = "EmployeeAddress.getPicture",
query = "SELECT u.areaPicture FROM EmployeeAddress u where u.id = :id"
)
})
@Entity
@Table(name = "JPARS_EMPLOYEEADDRESS")
public class EmployeeAddress {
@Id
@Column(name = "ADDRESS_ID")
@GeneratedValue
private int id;
@Basic
private String city;
@Lob
@Basic(fetch = FetchType.LAZY)
private String country;
@Basic
private String province;
@Basic
@Column(name = "P_CODE")
private String postalCode;
@Basic
private String street;
@Lob
private byte[] areaPicture;
public EmployeeAddress() {
}
public EmployeeAddress(String city, String country, String province,
String postalCode, String street) {
super();
this.city = city;
this.country = country;
this.province = province;
this.postalCode = postalCode;
this.street = street;
}
public int getId() {
return this.id;
}
public void setId(int addressId) {
this.id = addressId;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
public String getPostalCode() {
return this.postalCode;
}
public void setPostalCode(String pCode) {
this.postalCode = pCode;
}
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
public byte[] getAreaPicture() {
return areaPicture;
}
public void setAreaPicture(byte[] areaPicture) {
this.areaPicture = areaPicture;
}
}