01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/sam/tags/sakai_2-4-1/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/Item.java $
03: * $Id: Item.java 15083 2006-09-20 20:03:55Z lydial@stanford.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2004, 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the"License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/
21:
22: /**
23: * Item.java
24: *
25: * This file was auto-generated from WSDL
26: * by the Apache Axis WSDL2Java emitter.
27: *
28: * This was part of the web services demo files,
29: * Keep this just in case we need it later
30: */package org.sakaiproject.tool.assessment.ws;
31:
32: public class Item implements java.io.Serializable {
33: /**
34: *
35: */
36: private static final long serialVersionUID = 4561525116839644989L;
37: private java.lang.String itemid;
38: private java.lang.String itemtext;
39: private java.lang.String url;
40:
41: public Item() {
42: }
43:
44: public java.lang.String getItemid() {
45: return itemid;
46: }
47:
48: public void setItemid(java.lang.String itemid) {
49: this .itemid = itemid;
50: }
51:
52: public java.lang.String getItemtext() {
53: return itemtext;
54: }
55:
56: public void setItemtext(java.lang.String itemtext) {
57: this .itemtext = itemtext;
58: }
59:
60: public java.lang.String getUrl() {
61: return url;
62: }
63:
64: public void setUrl(java.lang.String url) {
65: this.url = url;
66: }
67:
68: }
|