package webctdbexport.db;
// Generated 17-Jun-2011 11:38:57 by Hibernate Tools 3.4.0.CR1
import javax.persistence.Column;
import javax.persistence.Embeddable;
/**
* EnrollmentLicenseId generated by hbm2java
*/
@Embeddable
public class EnrollmentLicenseId implements java.io.Serializable {
private String learnerCount;
private String portfolioOwnerCount;
public EnrollmentLicenseId() {
}
public EnrollmentLicenseId(String learnerCount, String portfolioOwnerCount) {
this.learnerCount = learnerCount;
this.portfolioOwnerCount = portfolioOwnerCount;
}
@Column(name="LEARNER_COUNT", nullable=false, length=128)
public String getLearnerCount() {
return this.learnerCount;
}
public void setLearnerCount(String learnerCount) {
this.learnerCount = learnerCount;
}
@Column(name="PORTFOLIO_OWNER_COUNT", nullable=false, length=128)
public String getPortfolioOwnerCount() {
return this.portfolioOwnerCount;
}
public void setPortfolioOwnerCount(String portfolioOwnerCount) {
this.portfolioOwnerCount = portfolioOwnerCount;
}
}