| 1 | |
package org.kuali.student.r2.core.queue.dto; |
| 2 | |
|
| 3 | |
import java.io.Serializable; |
| 4 | |
import java.util.Date; |
| 5 | |
|
| 6 | |
import javax.xml.bind.annotation.XmlAccessType; |
| 7 | |
import javax.xml.bind.annotation.XmlAccessorType; |
| 8 | |
import javax.xml.bind.annotation.XmlType; |
| 9 | |
|
| 10 | |
import org.kuali.student.r2.common.dto.IdEntityInfo; |
| 11 | |
import org.kuali.student.r2.core.queue.infc.QueueEntry; |
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 23 | |
@XmlType(name = "QueueEntryInfo", propOrder = {"id", "typeKey", "stateKey", "name", "descr", |
| 24 | |
"entryRefObjectId", "entryRefObjectTypeKey", "checkInDate", "position", "meta", "attributes", "_futureElements"}) |
| 25 | |
|
| 26 | 0 | public class QueueEntryInfo extends IdEntityInfo implements |
| 27 | |
QueueEntry, Serializable { |
| 28 | |
|
| 29 | |
|
| 30 | |
private static final long serialVersionUID = 1L; |
| 31 | |
|
| 32 | |
private String entryRefObjectId; |
| 33 | |
|
| 34 | |
private String entryRefObjectTypeKey; |
| 35 | |
|
| 36 | |
private Date checkInDate; |
| 37 | |
|
| 38 | |
private Integer position; |
| 39 | |
|
| 40 | |
public void setEntryRefObjectTypeKey(String entryRefObjectTypeKey) { |
| 41 | 0 | this.entryRefObjectTypeKey = entryRefObjectTypeKey; |
| 42 | 0 | } |
| 43 | |
|
| 44 | |
public void setEntryRefObjectId(String entryRefObjectId) { |
| 45 | 0 | this.entryRefObjectId = entryRefObjectId; |
| 46 | 0 | } |
| 47 | |
|
| 48 | |
public void setCheckInDate(Date checkInDate) { |
| 49 | 0 | this.checkInDate = checkInDate; |
| 50 | 0 | } |
| 51 | |
|
| 52 | |
public void setPosition(Integer position) { |
| 53 | 0 | this.position = position; |
| 54 | 0 | } |
| 55 | |
|
| 56 | |
@Override |
| 57 | |
public String getEntryRefObjectId() { |
| 58 | 0 | return entryRefObjectId; |
| 59 | |
} |
| 60 | |
|
| 61 | |
@Override |
| 62 | |
public Date getCheckInDate() { |
| 63 | 0 | return checkInDate; |
| 64 | |
} |
| 65 | |
|
| 66 | |
@Override |
| 67 | |
public Integer getPosition() { |
| 68 | 0 | return position; |
| 69 | |
} |
| 70 | |
|
| 71 | |
@Override |
| 72 | |
public String getEntryRefObjectTypeKey() { |
| 73 | 0 | return entryRefObjectTypeKey; |
| 74 | |
} |
| 75 | |
|
| 76 | |
} |