001/** 002 * Copyright 2005-2016 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.rice.krad.labs.parameter; 017 018import org.kuali.rice.krad.web.form.UifFormBase; 019 020/** 021 * @author Kuali Rice Team (rice.collab@kuali.org) 022 */ 023public class ParameterForm extends UifFormBase { 024 025 private String namespaceCode; 026 027 private String componentCode; 028 029 private String parameterName; 030 031 private String parameterValue; 032 033 public String getNamespaceCode() { 034 return namespaceCode; 035 } 036 037 public void setNamespaceCode(String namespaceCode) { 038 this.namespaceCode = namespaceCode; 039 } 040 041 public String getComponentCode() { 042 return componentCode; 043 } 044 045 public void setComponentCode(String componentCode) { 046 this.componentCode = componentCode; 047 } 048 049 public String getParameterName() { 050 return parameterName; 051 } 052 053 public void setParameterName(String parameterName) { 054 this.parameterName = parameterName; 055 } 056 057 public String getParameterValue() { 058 return parameterValue; 059 } 060 061 public void setParameterValue(String parameterValue) { 062 this.parameterValue = parameterValue; 063 } 064}