diff options
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr')
-rw-r--r-- | src/main/java/at/gv/util/xsd/szr/pvp19/ObjectFactory.java | 55 |
1 files changed, 21 insertions, 34 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/pvp19/ObjectFactory.java b/src/main/java/at/gv/util/xsd/szr/pvp19/ObjectFactory.java index 5294758..7bf7837 100644 --- a/src/main/java/at/gv/util/xsd/szr/pvp19/ObjectFactory.java +++ b/src/main/java/at/gv/util/xsd/szr/pvp19/ObjectFactory.java @@ -1,41 +1,37 @@ package at.gv.util.xsd.szr.pvp19; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; /** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the at.gv.util.xsd.szr.pvp19 package. - * <p>An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the at.gv.util.xsd.szr.pvp19 package. + * <p>An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are * provided in this class. - * + * */ @XmlRegistry public class ObjectFactory { - private final static QName _PvpToken_QNAME = new QName("http://egov.gv.at/pvp1.xsd", "pvpToken"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.util.xsd.szr.pvp19 - * + * */ public ObjectFactory() { } /** * Create an instance of {@link PvpTokenType } - * + * */ public PvpTokenType createPvpTokenType() { return new PvpTokenType(); @@ -43,7 +39,7 @@ public class ObjectFactory { /** * Create an instance of {@link PvpTokenType.Authorize } - * + * */ public PvpTokenType.Authorize createPvpTokenTypeAuthorize() { return new PvpTokenType.Authorize(); @@ -51,7 +47,7 @@ public class ObjectFactory { /** * Create an instance of {@link PvpTokenType.Authenticate } - * + * */ public PvpTokenType.Authenticate createPvpTokenTypeAuthenticate() { return new PvpTokenType.Authenticate(); @@ -59,7 +55,7 @@ public class ObjectFactory { /** * Create an instance of {@link PvpToken } - * + * */ public PvpToken createPvpToken() { return new PvpToken(); @@ -67,7 +63,7 @@ public class ObjectFactory { /** * Create an instance of {@link PvpTokenType.Accounting } - * + * */ public PvpTokenType.Accounting createPvpTokenTypeAccounting() { return new PvpTokenType.Accounting(); @@ -75,7 +71,7 @@ public class ObjectFactory { /** * Create an instance of {@link PvpTokenType.PvpExtension } - * + * */ public PvpTokenType.PvpExtension createPvpTokenTypePvpExtension() { return new PvpTokenType.PvpExtension(); @@ -83,7 +79,7 @@ public class ObjectFactory { /** * Create an instance of {@link PvpPrincipalType } - * + * */ public PvpPrincipalType createPvpPrincipalType() { return new PvpPrincipalType(); @@ -91,7 +87,7 @@ public class ObjectFactory { /** * Create an instance of {@link PvpTokenType.Authorize.Role } - * + * */ public PvpTokenType.Authorize.Role createPvpTokenTypeAuthorizeRole() { return new PvpTokenType.Authorize.Role(); @@ -99,19 +95,10 @@ public class ObjectFactory { /** * Create an instance of {@link PvpTokenType.Authenticate.UserPrincipal } - * + * */ public PvpTokenType.Authenticate.UserPrincipal createPvpTokenTypeAuthenticateUserPrincipal() { return new PvpTokenType.Authenticate.UserPrincipal(); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link PvpTokenType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://egov.gv.at/pvp1.xsd", name = "pvpToken") - public JAXBElement<PvpTokenType> createPvpToken(PvpTokenType value) { - return new JAXBElement<PvpTokenType>(_PvpToken_QNAME, PvpTokenType.class, null, value); - } - } |