package webctdbexport.db;
// Generated 17-Jun-2011 11:38:57 by Hibernate Tools 3.4.0.CR1
import java.math.BigDecimal;
import javax.persistence.Column;
import javax.persistence.Embeddable;
/**
* ContextSearchableObjectVId generated by hbm2java
*/
@Embeddable
public class ContextSearchableObjectVId implements java.io.Serializable {
private BigDecimal lookupId;
private String areaName;
private BigDecimal learningContextId;
private BigDecimal deliveryContextId;
public ContextSearchableObjectVId() {
}
public ContextSearchableObjectVId(BigDecimal lookupId, String areaName, BigDecimal learningContextId, BigDecimal deliveryContextId) {
this.lookupId = lookupId;
this.areaName = areaName;
this.learningContextId = learningContextId;
this.deliveryContextId = deliveryContextId;
}
@Column(name="LOOKUP_ID", nullable=false, precision=20, scale=0)
public BigDecimal getLookupId() {
return this.lookupId;
}
public void setLookupId(BigDecimal lookupId) {
this.lookupId = lookupId;
}
@Column(name="AREA_NAME", nullable=false, length=18)
public String getAreaName() {
return this.areaName;
}
public void setAreaName(String areaName) {
this.areaName = areaName;
}
@Column(name="LEARNING_CONTEXT_ID", nullable=false, precision=20, scale=0)
public BigDecimal getLearningContextId() {
return this.learningContextId;
}
public void setLearningContextId(BigDecimal learningContextId) {
this.learningContextId = learningContextId;
}
@Column(name="DELIVERY_CONTEXT_ID", nullable=false, precision=22, scale=0)
public BigDecimal getDeliveryContextId() {
return this.deliveryContextId;
}
public void setDeliveryContextId(BigDecimal deliveryContextId) {
this.deliveryContextId = deliveryContextId;
}
}