| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.student.core.workflow.dto; |
| 17 | |
|
| 18 | |
import java.io.Serializable; |
| 19 | |
|
| 20 | |
import javax.xml.bind.annotation.XmlAccessType; |
| 21 | |
import javax.xml.bind.annotation.XmlAccessorType; |
| 22 | |
import javax.xml.bind.annotation.XmlRootElement; |
| 23 | |
|
| 24 | |
@XmlRootElement |
| 25 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 26 | 0 | public class WorkflowPersonInfo implements Serializable{ |
| 27 | |
|
| 28 | |
private static final long serialVersionUID = 1L; |
| 29 | |
|
| 30 | |
private String principalId; |
| 31 | |
private String firstName; |
| 32 | |
private String lastName; |
| 33 | |
|
| 34 | |
private String permission; |
| 35 | |
private String action; |
| 36 | |
|
| 37 | |
private boolean author; |
| 38 | 0 | private boolean canRevokeRequest = false; |
| 39 | |
private String actionRequestId; |
| 40 | |
private String actionRequestStatus; |
| 41 | |
|
| 42 | |
public String getPrincipalId() { |
| 43 | 0 | return principalId; |
| 44 | |
} |
| 45 | |
public void setPrincipalId(String principalId) { |
| 46 | 0 | this.principalId = principalId; |
| 47 | 0 | } |
| 48 | |
public String getFirstName() { |
| 49 | 0 | return firstName; |
| 50 | |
} |
| 51 | |
public void setFirstName(String firstName) { |
| 52 | 0 | this.firstName = firstName; |
| 53 | 0 | } |
| 54 | |
public String getLastName() { |
| 55 | 0 | return lastName; |
| 56 | |
} |
| 57 | |
public void setLastName(String lastName) { |
| 58 | 0 | this.lastName = lastName; |
| 59 | 0 | } |
| 60 | |
public String getPermission() { |
| 61 | 0 | return permission; |
| 62 | |
} |
| 63 | |
public void setPermission(String permission) { |
| 64 | 0 | this.permission = permission; |
| 65 | 0 | } |
| 66 | |
public String getAction() { |
| 67 | 0 | return action; |
| 68 | |
} |
| 69 | |
public void setAction(String action) { |
| 70 | 0 | this.action = action; |
| 71 | 0 | } |
| 72 | |
public boolean isAuthor() { |
| 73 | 0 | return author; |
| 74 | |
} |
| 75 | |
public void setAuthor(boolean isAuthor) { |
| 76 | 0 | this.author = isAuthor; |
| 77 | 0 | } |
| 78 | |
public boolean isCanRevokeRequest() { |
| 79 | 0 | return canRevokeRequest; |
| 80 | |
} |
| 81 | |
public void setCanRevokeRequest(boolean canRevokeRequest) { |
| 82 | 0 | this.canRevokeRequest = canRevokeRequest; |
| 83 | 0 | } |
| 84 | |
public String getActionRequestStatus() { |
| 85 | 0 | return actionRequestStatus; |
| 86 | |
} |
| 87 | |
public void setActionRequestStatus(String actionRequestStatus) { |
| 88 | 0 | this.actionRequestStatus = actionRequestStatus; |
| 89 | 0 | } |
| 90 | |
public String getActionRequestId() { |
| 91 | 0 | return actionRequestId; |
| 92 | |
} |
| 93 | |
public void setActionRequestId(String actionRequestId) { |
| 94 | 0 | this.actionRequestId = actionRequestId; |
| 95 | 0 | } |
| 96 | |
} |