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; /** * AssmtAttemptExtendedEventId generated by hbm2java */ @Embeddable public class AssmtAttemptExtendedEventId implements java.io.Serializable { private BigDecimal id; private BigDecimal attemptId; private BigDecimal attemptItemId; private String eventKey; private BigDecimal eventDate; private BigDecimal position; public AssmtAttemptExtendedEventId() { } public AssmtAttemptExtendedEventId(BigDecimal id, BigDecimal attemptId, BigDecimal attemptItemId, String eventKey, BigDecimal eventDate, BigDecimal position) { this.id = id; this.attemptId = attemptId; this.attemptItemId = attemptItemId; this.eventKey = eventKey; this.eventDate = eventDate; this.position = position; } @Column(name="ID", nullable=false, precision=20, scale=0) public BigDecimal getId() { return this.id; } public void setId(BigDecimal id) { this.id = id; } @Column(name="ATTEMPT_ID", nullable=false, precision=20, scale=0) public BigDecimal getAttemptId() { return this.attemptId; } public void setAttemptId(BigDecimal attemptId) { this.attemptId = attemptId; } @Column(name="ATTEMPT_ITEM_ID", nullable=false, precision=20, scale=0) public BigDecimal getAttemptItemId() { return this.attemptItemId; } public void setAttemptItemId(BigDecimal attemptItemId) { this.attemptItemId = attemptItemId; } @Column(name="EVENT_KEY", nullable=false, length=128) public String getEventKey() { return this.eventKey; } public void setEventKey(String eventKey) { this.eventKey = eventKey; } @Column(name="EVENT_DATE", nullable=false, precision=20, scale=0) public BigDecimal getEventDate() { return this.eventDate; } public void setEventDate(BigDecimal eventDate) { this.eventDate = eventDate; } @Column(name="POSITION", nullable=false, precision=22, scale=0) public BigDecimal getPosition() { return this.position; } public void setPosition(BigDecimal position) { this.position = position; } }