Source Code Cross Referenced for WebservicesType.java in  » Web-Services-apache-cxf-2.0.1 » frontend » org » apache » cxf » jaxws » javaee » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Services apache cxf 2.0.1 » frontend » org.apache.cxf.jaxws.javaee 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        //
002:        // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
003:        // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004:        // Any modifications to this file will be lost upon recompilation of the source schema. 
005:        // Generated on: 2006.10.31 at 10:25:50 AM GMT+08:00 
006:        //
007:
008:        package org.apache.cxf.jaxws.javaee;
009:
010:        import java.util.ArrayList;
011:        import java.util.List;
012:        import javax.xml.bind.annotation.XmlAccessType;
013:        import javax.xml.bind.annotation.XmlAccessorType;
014:        import javax.xml.bind.annotation.XmlAttribute;
015:        import javax.xml.bind.annotation.XmlElement;
016:        import javax.xml.bind.annotation.XmlID;
017:        import javax.xml.bind.annotation.XmlType;
018:        import javax.xml.bind.annotation.XmlRootElement;
019:        import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
020:        import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
021:
022:        /**
023:         * <p>Java class for webservicesType complex type.
024:         * 
025:         * <p>The following schema fragment specifies the expected content contained within this class.
026:         * 
027:         * <pre>
028:         * &lt;complexType name="webservicesType">
029:         *   &lt;complexContent>
030:         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
031:         *       &lt;sequence>
032:         *         &lt;group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/>
033:         *         &lt;element name="webservice-description" type="{http://java.sun.com/xml/ns/javaee}webservice-descriptionType" maxOccurs="unbounded"/>
034:         *       &lt;/sequence>
035:         *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
036:         *       &lt;attribute name="version" use="required" type="{http://java.sun.com/xml/ns/javaee}dewey-versionType" fixed="1.2" />
037:         *     &lt;/restriction>
038:         *   &lt;/complexContent>
039:         * &lt;/complexType>
040:         * </pre>
041:         * 
042:         * 
043:         */
044:        @XmlRootElement(name="webservices",namespace="http://java.sun.com/xml/ns/javaee")
045:        @XmlAccessorType(XmlAccessType.FIELD)
046:        @XmlType(name="webservicesType",propOrder={"description","displayName","icon","webserviceDescription"})
047:        public class WebservicesType {
048:
049:            protected List<DescriptionType> description;
050:            @XmlElement(name="display-name")
051:            protected List<DisplayNameType> displayName;
052:            protected List<IconType> icon;
053:            @XmlElement(name="webservice-description",required=true)
054:            protected List<WebserviceDescriptionType> webserviceDescription;
055:            @XmlAttribute
056:            @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
057:            @XmlID
058:            protected java.lang.String id;
059:            @XmlAttribute(required=true)
060:            @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
061:            protected java.lang.String version;
062:
063:            /**
064:             * Gets the value of the description property.
065:             * 
066:             * <p>
067:             * This accessor method returns a reference to the live list,
068:             * not a snapshot. Therefore any modification you make to the
069:             * returned list will be present inside the JAXB object.
070:             * This is why there is not a <CODE>set</CODE> method for the description property.
071:             * 
072:             * <p>
073:             * For example, to add a new item, do as follows:
074:             * <pre>
075:             *    getDescription().add(newItem);
076:             * </pre>
077:             * 
078:             * 
079:             * <p>
080:             * Objects of the following type(s) are allowed in the list
081:             * {@link DescriptionType }
082:             * 
083:             * 
084:             */
085:            public List<DescriptionType> getDescription() {
086:                if (description == null) {
087:                    description = new ArrayList<DescriptionType>();
088:                }
089:                return this .description;
090:            }
091:
092:            /**
093:             * Gets the value of the displayName property.
094:             * 
095:             * <p>
096:             * This accessor method returns a reference to the live list,
097:             * not a snapshot. Therefore any modification you make to the
098:             * returned list will be present inside the JAXB object.
099:             * This is why there is not a <CODE>set</CODE> method for the displayName property.
100:             * 
101:             * <p>
102:             * For example, to add a new item, do as follows:
103:             * <pre>
104:             *    getDisplayName().add(newItem);
105:             * </pre>
106:             * 
107:             * 
108:             * <p>
109:             * Objects of the following type(s) are allowed in the list
110:             * {@link DisplayNameType }
111:             * 
112:             * 
113:             */
114:            public List<DisplayNameType> getDisplayName() {
115:                if (displayName == null) {
116:                    displayName = new ArrayList<DisplayNameType>();
117:                }
118:                return this .displayName;
119:            }
120:
121:            /**
122:             * Gets the value of the icon property.
123:             * 
124:             * <p>
125:             * This accessor method returns a reference to the live list,
126:             * not a snapshot. Therefore any modification you make to the
127:             * returned list will be present inside the JAXB object.
128:             * This is why there is not a <CODE>set</CODE> method for the icon property.
129:             * 
130:             * <p>
131:             * For example, to add a new item, do as follows:
132:             * <pre>
133:             *    getIcon().add(newItem);
134:             * </pre>
135:             * 
136:             * 
137:             * <p>
138:             * Objects of the following type(s) are allowed in the list
139:             * {@link IconType }
140:             * 
141:             * 
142:             */
143:            public List<IconType> getIcon() {
144:                if (icon == null) {
145:                    icon = new ArrayList<IconType>();
146:                }
147:                return this .icon;
148:            }
149:
150:            /**
151:             * Gets the value of the webserviceDescription property.
152:             * 
153:             * <p>
154:             * This accessor method returns a reference to the live list,
155:             * not a snapshot. Therefore any modification you make to the
156:             * returned list will be present inside the JAXB object.
157:             * This is why there is not a <CODE>set</CODE> method for the webserviceDescription property.
158:             * 
159:             * <p>
160:             * For example, to add a new item, do as follows:
161:             * <pre>
162:             *    getWebserviceDescription().add(newItem);
163:             * </pre>
164:             * 
165:             * 
166:             * <p>
167:             * Objects of the following type(s) are allowed in the list
168:             * {@link WebserviceDescriptionType }
169:             * 
170:             * 
171:             */
172:            public List<WebserviceDescriptionType> getWebserviceDescription() {
173:                if (webserviceDescription == null) {
174:                    webserviceDescription = new ArrayList<WebserviceDescriptionType>();
175:                }
176:                return this .webserviceDescription;
177:            }
178:
179:            /**
180:             * Gets the value of the id property.
181:             * 
182:             * @return
183:             *     possible object is
184:             *     {@link java.lang.String }
185:             *     
186:             */
187:            public java.lang.String getId() {
188:                return id;
189:            }
190:
191:            /**
192:             * Sets the value of the id property.
193:             * 
194:             * @param value
195:             *     allowed object is
196:             *     {@link java.lang.String }
197:             *     
198:             */
199:            public void setId(java.lang.String value) {
200:                this .id = value;
201:            }
202:
203:            /**
204:             * Gets the value of the version property.
205:             * 
206:             * @return
207:             *     possible object is
208:             *     {@link java.lang.String }
209:             *     
210:             */
211:            public java.lang.String getVersion() {
212:                if (version == null) {
213:                    return "1.2";
214:                } else {
215:                    return version;
216:                }
217:            }
218:
219:            /**
220:             * Sets the value of the version property.
221:             * 
222:             * @param value
223:             *     allowed object is
224:             *     {@link java.lang.String }
225:             *     
226:             */
227:            public void setVersion(java.lang.String value) {
228:                this.version = value;
229:            }
230:
231:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.