| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
package org.kuali.rice.edl.impl; |
| 18 | |
|
| 19 | |
import javax.xml.transform.Transformer; |
| 20 | |
|
| 21 | |
import org.kuali.rice.edl.impl.bo.EDocLiteAssociation; |
| 22 | |
import org.kuali.rice.krad.UserSession; |
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
public class EDLContext { |
| 32 | |
|
| 33 | |
private EDocLiteAssociation edocLiteAssociation; |
| 34 | |
private EDLControllerChain edlControllerChain; |
| 35 | |
private UserSession userSession; |
| 36 | |
private Transformer transformer; |
| 37 | |
private RequestParser requestParser; |
| 38 | |
private boolean inError; |
| 39 | |
private UserAction userAction; |
| 40 | |
private String redirectUrl; |
| 41 | |
|
| 42 | 0 | public EDLContext() { |
| 43 | 0 | redirectUrl = null; |
| 44 | 0 | } |
| 45 | |
|
| 46 | |
public UserSession getUserSession() { |
| 47 | 0 | return userSession; |
| 48 | |
} |
| 49 | |
public void setUserSession(UserSession userSession) { |
| 50 | 0 | this.userSession = userSession; |
| 51 | 0 | } |
| 52 | |
public EDLControllerChain getEdlControllerChain() { |
| 53 | 0 | return edlControllerChain; |
| 54 | |
} |
| 55 | |
public void setEdlControllerChain(EDLControllerChain edlControllerChain) { |
| 56 | 0 | this.edlControllerChain = edlControllerChain; |
| 57 | 0 | } |
| 58 | |
public EDocLiteAssociation getEdocLiteAssociation() { |
| 59 | 0 | return edocLiteAssociation; |
| 60 | |
} |
| 61 | |
public void setEdocLiteAssociation(EDocLiteAssociation edocLiteAssociation) { |
| 62 | 0 | this.edocLiteAssociation = edocLiteAssociation; |
| 63 | 0 | } |
| 64 | |
public Transformer getTransformer() { |
| 65 | 0 | return transformer; |
| 66 | |
} |
| 67 | |
public void setTransformer(Transformer transformer) { |
| 68 | 0 | this.transformer = transformer; |
| 69 | 0 | } |
| 70 | |
public boolean isInError() { |
| 71 | 0 | return inError; |
| 72 | |
} |
| 73 | |
public void setInError(boolean inError) { |
| 74 | 0 | this.inError = inError; |
| 75 | 0 | } |
| 76 | |
public RequestParser getRequestParser() { |
| 77 | 0 | return requestParser; |
| 78 | |
} |
| 79 | |
public void setRequestParser(RequestParser requestParser) { |
| 80 | 0 | this.requestParser = requestParser; |
| 81 | 0 | } |
| 82 | |
public UserAction getUserAction() { |
| 83 | 0 | return this.userAction; |
| 84 | |
} |
| 85 | |
public void setUserAction(UserAction userAction) { |
| 86 | 0 | this.userAction = userAction; |
| 87 | 0 | } |
| 88 | |
|
| 89 | |
public String getRedirectUrl() { |
| 90 | 0 | return redirectUrl; |
| 91 | |
} |
| 92 | |
|
| 93 | |
public void setRedirectUrl(String redirectUrl) { |
| 94 | 0 | this.redirectUrl = redirectUrl; |
| 95 | 0 | } |
| 96 | |
|
| 97 | |
} |