1 8 9 package com.sun.xml.ws.security.wsu; 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.wsu.AttributedDateTime; 16 import com.sun.xml.ws.security.wsu.AttributedURI; 17 import com.sun.xml.ws.security.wsu.ObjectFactory; 18 import com.sun.xml.ws.security.wsu.TimestampType; 19 20 21 35 @XmlRegistry 36 public class ObjectFactory { 37 38 private final static QName _Expires_QNAME = new QName ("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", "Expires"); 39 private final static QName _Created_QNAME = new QName ("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", "Created"); 40 private final static QName _Timestamp_QNAME = new QName ("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", "Timestamp"); 41 42 46 public ObjectFactory() { 47 } 48 49 53 public AttributedURI createAttributedURI() { 54 return new AttributedURI(); 55 } 56 57 61 public TimestampType createTimestampType() { 62 return new TimestampType(); 63 } 64 65 69 public AttributedDateTime createAttributedDateTime() { 70 return new AttributedDateTime(); 71 } 72 73 77 @XmlElementDecl(namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", name = "Expires") 78 public JAXBElement<AttributedDateTime> createExpires(AttributedDateTime value) { 79 return new JAXBElement<AttributedDateTime>(_Expires_QNAME, AttributedDateTime.class, null, value); 80 } 81 82 86 @XmlElementDecl(namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", name = "Created") 87 public JAXBElement<AttributedDateTime> createCreated(AttributedDateTime value) { 88 return new JAXBElement<AttributedDateTime>(_Created_QNAME, AttributedDateTime.class, null, value); 89 } 90 91 95 @XmlElementDecl(namespace = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", name = "Timestamp") 96 public JAXBElement<TimestampType> createTimestamp(TimestampType value) { 97 return new JAXBElement<TimestampType>(_Timestamp_QNAME, TimestampType.class, null, value); 98 } 99 100 } 101 | Popular Tags |