View Javadoc
1   /**
2    * Copyright 2004-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.kpme.tklm.common;
17  
18  import org.kuali.kpme.core.web.KPMEForm;
19  
20  public class ChangeTargetPersonForm extends KPMEForm {
21  
22  	private static final long serialVersionUID = -8307585413793442914L;
23  
24  	private String principalName;
25      
26      private String targetUrl;
27      private String returnUrl;
28      private String fromAction; 
29      private String message;
30      
31  	public String getPrincipalName() {
32  		return principalName;
33  	}
34  
35  	public void setPrincipalName(String principalName) {
36  		this.principalName = principalName;
37  	}
38  	
39      public String getTargetUrl() {
40          return targetUrl;
41      }
42  
43      public void setTargetUrl(String targetUrl) {
44          this.targetUrl = targetUrl;
45      }
46  
47  	public String getReturnUrl() {
48          return returnUrl;
49      }
50  
51      public void setReturnUrl(String returnUrl) {
52          this.returnUrl = returnUrl;
53      }
54  
55  	public String getFromAction() {
56  		return fromAction;
57  	}
58  
59  	public void setFromAction(String fromAction) {
60  		this.fromAction = fromAction;
61  	}
62  
63  	public String getMessage() {
64  		return message;
65  	}
66  
67  	public void setMessage(String message) {
68  		this.message = message;
69  	}
70  
71  	
72  }