KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > ws > security > secconv > impl > bindings > ObjectFactory


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.02.24 at 05:55:09 PM PST
6
//
7

8
9 package com.sun.xml.ws.security.secconv.impl.bindings;
10
11 import javax.xml.bind.JAXBElement;
12 import javax.xml.bind.annotation.XmlElementDecl;
13 import javax.xml.bind.annotation.XmlRegistry;
14 import javax.xml.namespace.QName JavaDoc;
15 import com.sun.xml.ws.security.secconv.impl.bindings.DerivedKeyTokenType;
16 import com.sun.xml.ws.security.secconv.impl.bindings.ObjectFactory;
17 import com.sun.xml.ws.security.secconv.impl.bindings.PropertiesType;
18 import com.sun.xml.ws.security.secconv.impl.bindings.SecurityContextTokenType;
19
20
21 /**
22  * This object contains factory methods for each
23  * Java content interface and Java element interface
24  * generated in the com.sun.xml.ws.security.secconv.impl.bindings package.
25  * <p>An ObjectFactory allows you to programatically
26  * construct new instances of the Java representation
27  * for XML content. The Java representation of XML
28  * content can consist of schema derived interfaces
29  * and classes representing the binding of schema
30  * type definitions, element declarations and model
31  * groups. Factory methods for each of these are
32  * provided in this class.
33  *
34  */

35 @XmlRegistry
36 public class ObjectFactory {
37
38     private final static QName JavaDoc _Instance_QNAME = new QName JavaDoc("http://schemas.xmlsoap.org/ws/2005/02/sc", "Instance");
39     private final static QName JavaDoc _DerivedKeyToken_QNAME = new QName JavaDoc("http://schemas.xmlsoap.org/ws/2005/02/sc", "DerivedKeyToken");
40     private final static QName JavaDoc _Identifier_QNAME = new QName JavaDoc("http://schemas.xmlsoap.org/ws/2005/02/sc", "Identifier");
41     private final static QName JavaDoc _Nonce_QNAME = new QName JavaDoc("http://schemas.xmlsoap.org/ws/2005/02/sc", "Nonce");
42     private final static QName JavaDoc _Name_QNAME = new QName JavaDoc("http://schemas.xmlsoap.org/ws/2005/02/sc", "Name");
43     private final static QName JavaDoc _SecurityContextToken_QNAME = new QName JavaDoc("http://schemas.xmlsoap.org/ws/2005/02/sc", "SecurityContextToken");
44     private final static QName JavaDoc _Label_QNAME = new QName JavaDoc("http://schemas.xmlsoap.org/ws/2005/02/sc", "Label");
45
46     /**
47      * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sun.xml.ws.security.secconv.impl.bindings
48      *
49      */

50     public ObjectFactory() {
51     }
52
53     /**
54      * Create an instance of {@link SecurityContextTokenType }
55      *
56      */

57     public SecurityContextTokenType createSecurityContextTokenType() {
58         return new SecurityContextTokenType();
59     }
60
61     /**
62      * Create an instance of {@link DerivedKeyTokenType }
63      *
64      */

65     public DerivedKeyTokenType createDerivedKeyTokenType() {
66         return new DerivedKeyTokenType();
67     }
68
69     /**
70      * Create an instance of {@link PropertiesType }
71      *
72      */

73     public PropertiesType createPropertiesType() {
74         return new PropertiesType();
75     }
76
77     /**
78      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
79      *
80      */

81     @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Instance")
82     public JAXBElement<String JavaDoc> createInstance(String JavaDoc value) {
83         return new JAXBElement<String JavaDoc>(_Instance_QNAME, String JavaDoc.class, null, value);
84     }
85
86     /**
87      * Create an instance of {@link JAXBElement }{@code <}{@link DerivedKeyTokenType }{@code >}}
88      *
89      */

90     @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "DerivedKeyToken")
91     public JAXBElement<DerivedKeyTokenType> createDerivedKeyToken(DerivedKeyTokenType value) {
92         return new JAXBElement<DerivedKeyTokenType>(_DerivedKeyToken_QNAME, DerivedKeyTokenType.class, null, value);
93     }
94
95     /**
96      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
97      *
98      */

99     @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Identifier")
100     public JAXBElement<String JavaDoc> createIdentifier(String JavaDoc value) {
101         return new JAXBElement<String JavaDoc>(_Identifier_QNAME, String JavaDoc.class, null, value);
102     }
103
104     /**
105      * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
106      *
107      */

108     @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Nonce")
109     public JAXBElement<byte[]> createNonce(byte[] value) {
110         return new JAXBElement<byte[]>(_Nonce_QNAME, byte[].class, null, ((byte[]) value));
111     }
112
113     /**
114      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
115      *
116      */

117     @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Name")
118     public JAXBElement<String JavaDoc> createName(String JavaDoc value) {
119         return new JAXBElement<String JavaDoc>(_Name_QNAME, String JavaDoc.class, null, value);
120     }
121
122     /**
123      * Create an instance of {@link JAXBElement }{@code <}{@link SecurityContextTokenType }{@code >}}
124      *
125      */

126     @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "SecurityContextToken")
127     public JAXBElement<SecurityContextTokenType> createSecurityContextToken(SecurityContextTokenType value) {
128         return new JAXBElement<SecurityContextTokenType>(_SecurityContextToken_QNAME, SecurityContextTokenType.class, null, value);
129     }
130
131     /**
132      * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
133      *
134      */

135     @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Label")
136     public JAXBElement<String JavaDoc> createLabel(String JavaDoc value) {
137         return new JAXBElement<String JavaDoc>(_Label_QNAME, String JavaDoc.class, null, value);
138     }
139
140 }
141
Popular Tags