Source Code Cross Referenced for PortComponentRefType.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 javax.xml.bind.annotation.XmlAccessType;
011:        import javax.xml.bind.annotation.XmlAccessorType;
012:        import javax.xml.bind.annotation.XmlAttribute;
013:        import javax.xml.bind.annotation.XmlElement;
014:        import javax.xml.bind.annotation.XmlID;
015:        import javax.xml.bind.annotation.XmlType;
016:        import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
017:        import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
018:
019:        /**
020:         * 
021:         * 
022:         * 	The port-component-ref element declares a client dependency
023:         * 	on the container for resolving a Service Endpoint Interface
024:         * 	to a WSDL port. It optionally associates the Service Endpoint
025:         * 	Interface with a particular port-component. This is only used
026:         * 	by the container for a Service.getPort(Class) method call.
027:         * 
028:         *       
029:         * 
030:         * <p>Java class for port-component-refType complex type.
031:         * 
032:         * <p>The following schema fragment specifies the expected content contained within this class.
033:         * 
034:         * <pre>
035:         * &lt;complexType name="port-component-refType">
036:         *   &lt;complexContent>
037:         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
038:         *       &lt;sequence>
039:         *         &lt;element name="service-endpoint-interface" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType"/>
040:         *         &lt;element name="enable-mtom" type="{http://java.sun.com/xml/ns/javaee}true-falseType" minOccurs="0"/>
041:         *         &lt;element name="port-component-link" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/>
042:         *       &lt;/sequence>
043:         *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
044:         *     &lt;/restriction>
045:         *   &lt;/complexContent>
046:         * &lt;/complexType>
047:         * </pre>
048:         * 
049:         * 
050:         */
051:        @XmlAccessorType(XmlAccessType.FIELD)
052:        @XmlType(name="port-component-refType",propOrder={"serviceEndpointInterface","enableMtom","portComponentLink"})
053:        public class PortComponentRefType {
054:
055:            @XmlElement(name="service-endpoint-interface",required=true)
056:            protected FullyQualifiedClassType serviceEndpointInterface;
057:            @XmlElement(name="enable-mtom")
058:            protected TrueFalseType enableMtom;
059:            @XmlElement(name="port-component-link")
060:            protected org.apache.cxf.jaxws.javaee.String portComponentLink;
061:            @XmlAttribute
062:            @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
063:            @XmlID
064:            protected java.lang.String id;
065:
066:            /**
067:             * Gets the value of the serviceEndpointInterface property.
068:             * 
069:             * @return
070:             *     possible object is
071:             *     {@link FullyQualifiedClassType }
072:             *     
073:             */
074:            public FullyQualifiedClassType getServiceEndpointInterface() {
075:                return serviceEndpointInterface;
076:            }
077:
078:            /**
079:             * Sets the value of the serviceEndpointInterface property.
080:             * 
081:             * @param value
082:             *     allowed object is
083:             *     {@link FullyQualifiedClassType }
084:             *     
085:             */
086:            public void setServiceEndpointInterface(
087:                    FullyQualifiedClassType value) {
088:                this .serviceEndpointInterface = value;
089:            }
090:
091:            /**
092:             * Gets the value of the enableMtom property.
093:             * 
094:             * @return
095:             *     possible object is
096:             *     {@link TrueFalseType }
097:             *     
098:             */
099:            public TrueFalseType getEnableMtom() {
100:                return enableMtom;
101:            }
102:
103:            /**
104:             * Sets the value of the enableMtom property.
105:             * 
106:             * @param value
107:             *     allowed object is
108:             *     {@link TrueFalseType }
109:             *     
110:             */
111:            public void setEnableMtom(TrueFalseType value) {
112:                this .enableMtom = value;
113:            }
114:
115:            /**
116:             * Gets the value of the portComponentLink property.
117:             * 
118:             * @return
119:             *     possible object is
120:             *     {@link org.apache.cxf.jaxws.javaee.String }
121:             *     
122:             */
123:            public org.apache.cxf.jaxws.javaee.String getPortComponentLink() {
124:                return portComponentLink;
125:            }
126:
127:            /**
128:             * Sets the value of the portComponentLink property.
129:             * 
130:             * @param value
131:             *     allowed object is
132:             *     {@link org.apache.cxf.jaxws.javaee.String }
133:             *     
134:             */
135:            public void setPortComponentLink(
136:                    org.apache.cxf.jaxws.javaee.String value) {
137:                this .portComponentLink = value;
138:            }
139:
140:            /**
141:             * Gets the value of the id property.
142:             * 
143:             * @return
144:             *     possible object is
145:             *     {@link java.lang.String }
146:             *     
147:             */
148:            public java.lang.String getId() {
149:                return id;
150:            }
151:
152:            /**
153:             * Sets the value of the id property.
154:             * 
155:             * @param value
156:             *     allowed object is
157:             *     {@link java.lang.String }
158:             *     
159:             */
160:            public void setId(java.lang.String value) {
161:                this.id = value;
162:            }
163:
164:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.