| 1 | // |
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 |
| 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: 2010.06.29 at 05:55:18 PM CEST |
| 6 | // |
| 7 | |
| 8 | |
| 9 | package org.jomc.standalone.model; |
| 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 | |
| 16 | |
| 17 | /** |
| 18 | * This object contains factory methods for each |
| 19 | * Java content interface and Java element interface |
| 20 | * generated in the org.jomc.standalone.model package. |
| 21 | * <p>An ObjectFactory allows you to programatically |
| 22 | * construct new instances of the Java representation |
| 23 | * for XML content. The Java representation of XML |
| 24 | * content can consist of schema derived interfaces |
| 25 | * and classes representing the binding of schema |
| 26 | * type definitions, element declarations and model |
| 27 | * groups. Factory methods for each of these are |
| 28 | * provided in this class. |
| 29 | * |
| 30 | */ |
| 31 | @XmlRegistry |
| 32 | public class ObjectFactory { |
| 33 | |
| 34 | private final static QName _Method_QNAME = new QName("http://jomc.org/standalone/model", "method"); |
| 35 | private final static QName _Transaction_QNAME = new QName("http://jomc.org/standalone/model", "transaction"); |
| 36 | private final static QName _Methods_QNAME = new QName("http://jomc.org/standalone/model", "methods"); |
| 37 | private final static QName _Exception_QNAME = new QName("http://jomc.org/standalone/model", "exception"); |
| 38 | private final static QName _Parameters_QNAME = new QName("http://jomc.org/standalone/model", "parameters"); |
| 39 | private final static QName _Exceptions_QNAME = new QName("http://jomc.org/standalone/model", "exceptions"); |
| 40 | private final static QName _Parameter_QNAME = new QName("http://jomc.org/standalone/model", "parameter"); |
| 41 | |
| 42 | /** |
| 43 | * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jomc.standalone.model |
| 44 | * |
| 45 | */ |
| 46 | public ObjectFactory() { |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Create an instance of {@link TransactionType } |
| 51 | * |
| 52 | */ |
| 53 | public TransactionType createTransactionType() { |
| 54 | return new TransactionType(); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Create an instance of {@link ExceptionType } |
| 59 | * |
| 60 | */ |
| 61 | public ExceptionType createExceptionType() { |
| 62 | return new ExceptionType(); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Create an instance of {@link MethodsType } |
| 67 | * |
| 68 | */ |
| 69 | public MethodsType createMethodsType() { |
| 70 | return new MethodsType(); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Create an instance of {@link ExceptionsType } |
| 75 | * |
| 76 | */ |
| 77 | public ExceptionsType createExceptionsType() { |
| 78 | return new ExceptionsType(); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Create an instance of {@link MethodType } |
| 83 | * |
| 84 | */ |
| 85 | public MethodType createMethodType() { |
| 86 | return new MethodType(); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Create an instance of {@link ParametersType } |
| 91 | * |
| 92 | */ |
| 93 | public ParametersType createParametersType() { |
| 94 | return new ParametersType(); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Create an instance of {@link ParameterType } |
| 99 | * |
| 100 | */ |
| 101 | public ParameterType createParameterType() { |
| 102 | return new ParameterType(); |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Create an instance of {@link JAXBElement }{@code <}{@link MethodType }{@code >}} |
| 107 | * |
| 108 | */ |
| 109 | @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "method") |
| 110 | public JAXBElement<MethodType> createMethod(MethodType value) { |
| 111 | return new JAXBElement<MethodType>(_Method_QNAME, MethodType.class, null, value); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Create an instance of {@link JAXBElement }{@code <}{@link TransactionType }{@code >}} |
| 116 | * |
| 117 | */ |
| 118 | @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "transaction") |
| 119 | public JAXBElement<TransactionType> createTransaction(TransactionType value) { |
| 120 | return new JAXBElement<TransactionType>(_Transaction_QNAME, TransactionType.class, null, value); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Create an instance of {@link JAXBElement }{@code <}{@link MethodsType }{@code >}} |
| 125 | * |
| 126 | */ |
| 127 | @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "methods") |
| 128 | public JAXBElement<MethodsType> createMethods(MethodsType value) { |
| 129 | return new JAXBElement<MethodsType>(_Methods_QNAME, MethodsType.class, null, value); |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * Create an instance of {@link JAXBElement }{@code <}{@link ExceptionType }{@code >}} |
| 134 | * |
| 135 | */ |
| 136 | @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "exception") |
| 137 | public JAXBElement<ExceptionType> createException(ExceptionType value) { |
| 138 | return new JAXBElement<ExceptionType>(_Exception_QNAME, ExceptionType.class, null, value); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Create an instance of {@link JAXBElement }{@code <}{@link ParametersType }{@code >}} |
| 143 | * |
| 144 | */ |
| 145 | @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "parameters") |
| 146 | public JAXBElement<ParametersType> createParameters(ParametersType value) { |
| 147 | return new JAXBElement<ParametersType>(_Parameters_QNAME, ParametersType.class, null, value); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Create an instance of {@link JAXBElement }{@code <}{@link ExceptionsType }{@code >}} |
| 152 | * |
| 153 | */ |
| 154 | @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "exceptions") |
| 155 | public JAXBElement<ExceptionsType> createExceptions(ExceptionsType value) { |
| 156 | return new JAXBElement<ExceptionsType>(_Exceptions_QNAME, ExceptionsType.class, null, value); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Create an instance of {@link JAXBElement }{@code <}{@link ParameterType }{@code >}} |
| 161 | * |
| 162 | */ |
| 163 | @XmlElementDecl(namespace = "http://jomc.org/standalone/model", name = "parameter") |
| 164 | public JAXBElement<ParameterType> createParameter(ParameterType value) { |
| 165 | return new JAXBElement<ParameterType>(_Parameter_QNAME, ParameterType.class, null, value); |
| 166 | } |
| 167 | |
| 168 | } |