001: /*
002: * The contents of this file are subject to the terms
003: * of the Common Development and Distribution License
004: * (the License). You may not use this file except in
005: * compliance with the License.
006: *
007: * You can obtain a copy of the license at
008: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
009: * See the License for the specific language governing
010: * permissions and limitations under the License.
011: *
012: * When distributing Covered Code, include this CDDL
013: * Header Notice in each file and include the License file
014: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
015: * If applicable, add the following below the CDDL Header,
016: * with the fields enclosed by brackets [] replaced by
017: * you own identifying information:
018: * "Portions Copyrighted [year] [name of copyright owner]"
019: *
020: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
021: */
022:
023: //
024: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
025: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
026: // Any modifications to this file will be lost upon recompilation of the source schema.
027: // Generated on: 2006.08.10 at 02:34:36 PM IST
028: //
029:
030: package com.sun.xml.ws.security.wsu10;
031:
032: import javax.xml.bind.JAXBElement;
033: import javax.xml.bind.annotation.XmlElementDecl;
034: import javax.xml.bind.annotation.XmlRegistry;
035: import javax.xml.namespace.QName;
036:
037: /**
038: * This object contains factory methods for each
039: * Java content interface and Java element interface
040: * generated in the com.sun.xml.ws.security.wsu10 package.
041: * <p>An ObjectFactory allows you to programatically
042: * construct new instances of the Java representation
043: * for XML content. The Java representation of XML
044: * content can consist of schema derived interfaces
045: * and classes representing the binding of schema
046: * type definitions, element declarations and model
047: * groups. Factory methods for each of these are
048: * provided in this class.
049: *
050: */
051: @XmlRegistry
052: public class ObjectFactory {
053:
054: private final static QName _Expires_QNAME = new QName(
055: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd",
056: "Expires");
057: private final static QName _Created_QNAME = new QName(
058: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd",
059: "Created");
060: private final static QName _Timestamp_QNAME = new QName(
061: "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd",
062: "Timestamp");
063:
064: /**
065: * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sun.xml.ws.security.wsu10
066: *
067: */
068: public ObjectFactory() {
069: }
070:
071: /**
072: * Create an instance of {@link AttributedURI }
073: *
074: */
075: public AttributedURI createAttributedURI() {
076: return new AttributedURI();
077: }
078:
079: /**
080: * Create an instance of {@link TimestampType }
081: *
082: */
083: public TimestampType createTimestampType() {
084: return new TimestampType();
085: }
086:
087: /**
088: * Create an instance of {@link AttributedDateTime }
089: *
090: */
091: public AttributedDateTime createAttributedDateTime() {
092: return new AttributedDateTime();
093: }
094:
095: /**
096: * Create an instance of {@link JAXBElement }{@code <}{@link AttributedDateTime }{@code >}}
097: *
098: */
099: @XmlElementDecl(namespace="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd",name="Expires")
100: public JAXBElement<AttributedDateTime> createExpires(
101: AttributedDateTime value) {
102: return new JAXBElement<AttributedDateTime>(_Expires_QNAME,
103: AttributedDateTime.class, null, value);
104: }
105:
106: /**
107: * Create an instance of {@link JAXBElement }{@code <}{@link AttributedDateTime }{@code >}}
108: *
109: */
110: @XmlElementDecl(namespace="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd",name="Created")
111: public JAXBElement<AttributedDateTime> createCreated(
112: AttributedDateTime value) {
113: return new JAXBElement<AttributedDateTime>(_Created_QNAME,
114: AttributedDateTime.class, null, value);
115: }
116:
117: /**
118: * Create an instance of {@link JAXBElement }{@code <}{@link TimestampType }{@code >}}
119: *
120: */
121: @XmlElementDecl(namespace="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd",name="Timestamp")
122: public JAXBElement<TimestampType> createTimestamp(
123: TimestampType value) {
124: return new JAXBElement<TimestampType>(_Timestamp_QNAME,
125: TimestampType.class, null, value);
126: }
127:
128: }
|