01: /*
02: * Copyright 2005-2006 The Kuali Foundation.
03: *
04: *
05: * Licensed under the Educational Community License, Version 1.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.opensource.org/licenses/ecl1.php
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package edu.iu.uis.eden.clientapp.vo;
18:
19: /**
20: * Represents a property being populated on an attribute being used from the client but set on the server.
21: *
22: * @author ewestfal
23: *
24: * @workflow.webservice-object
25: */
26: public class PropertyDefinitionVO implements java.io.Serializable {
27:
28: private static final long serialVersionUID = -8190461666520475280L;
29: private String name;
30: private String value;
31:
32: public PropertyDefinitionVO() {
33: }
34:
35: public PropertyDefinitionVO(String name, String value) {
36: this .name = name;
37: this .value = value;
38: }
39:
40: public String getName() {
41: return name;
42: }
43:
44: public void setName(String name) {
45: this .name = name;
46: }
47:
48: public String getValue() {
49: return value;
50: }
51:
52: public void setValue(String value) {
53: this.value = value;
54: }
55:
56: }
|