001/** 002 * Copyright 2004-2014 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.kpme.tklm.common; 017 018import org.kuali.kpme.core.web.KPMEForm; 019 020public class ChangeTargetPersonForm extends KPMEForm { 021 022 private static final long serialVersionUID = -8307585413793442914L; 023 024 private String principalName; 025 026 private String targetUrl; 027 private String returnUrl; 028 private String fromAction; 029 private String message; 030 031 public String getPrincipalName() { 032 return principalName; 033 } 034 035 public void setPrincipalName(String principalName) { 036 this.principalName = principalName; 037 } 038 039 public String getTargetUrl() { 040 return targetUrl; 041 } 042 043 public void setTargetUrl(String targetUrl) { 044 this.targetUrl = targetUrl; 045 } 046 047 public String getReturnUrl() { 048 return returnUrl; 049 } 050 051 public void setReturnUrl(String returnUrl) { 052 this.returnUrl = returnUrl; 053 } 054 055 public String getFromAction() { 056 return fromAction; 057 } 058 059 public void setFromAction(String fromAction) { 060 this.fromAction = fromAction; 061 } 062 063 public String getMessage() { 064 return message; 065 } 066 067 public void setMessage(String message) { 068 this.message = message; 069 } 070 071 072}