1 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 ; 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 35 @XmlRegistry 36 public class ObjectFactory { 37 38 private final static QName _Instance_QNAME = new QName ("http://schemas.xmlsoap.org/ws/2005/02/sc", "Instance"); 39 private final static QName _DerivedKeyToken_QNAME = new QName ("http://schemas.xmlsoap.org/ws/2005/02/sc", "DerivedKeyToken"); 40 private final static QName _Identifier_QNAME = new QName ("http://schemas.xmlsoap.org/ws/2005/02/sc", "Identifier"); 41 private final static QName _Nonce_QNAME = new QName ("http://schemas.xmlsoap.org/ws/2005/02/sc", "Nonce"); 42 private final static QName _Name_QNAME = new QName ("http://schemas.xmlsoap.org/ws/2005/02/sc", "Name"); 43 private final static QName _SecurityContextToken_QNAME = new QName ("http://schemas.xmlsoap.org/ws/2005/02/sc", "SecurityContextToken"); 44 private final static QName _Label_QNAME = new QName ("http://schemas.xmlsoap.org/ws/2005/02/sc", "Label"); 45 46 50 public ObjectFactory() { 51 } 52 53 57 public SecurityContextTokenType createSecurityContextTokenType() { 58 return new SecurityContextTokenType(); 59 } 60 61 65 public DerivedKeyTokenType createDerivedKeyTokenType() { 66 return new DerivedKeyTokenType(); 67 } 68 69 73 public PropertiesType createPropertiesType() { 74 return new PropertiesType(); 75 } 76 77 81 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Instance") 82 public JAXBElement<String > createInstance(String value) { 83 return new JAXBElement<String >(_Instance_QNAME, String .class, null, value); 84 } 85 86 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 99 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Identifier") 100 public JAXBElement<String > createIdentifier(String value) { 101 return new JAXBElement<String >(_Identifier_QNAME, String .class, null, value); 102 } 103 104 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 117 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Name") 118 public JAXBElement<String > createName(String value) { 119 return new JAXBElement<String >(_Name_QNAME, String .class, null, value); 120 } 121 122 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 135 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2005/02/sc", name = "Label") 136 public JAXBElement<String > createLabel(String value) { 137 return new JAXBElement<String >(_Label_QNAME, String .class, null, value); 138 } 139 140 } 141 | Popular Tags |