From c0d0c39aead8bcb6fa4fd13e1133aa35fdbbb6eb Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Thu, 20 Feb 2020 15:47:36 +0100 Subject: add missing method that was not generated automatically during JAXB class-generation --- src/main/java/at/gv/util/xsd/szr/pvp19/ObjectFactory.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src') 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 7bf7837..0c20144 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,7 +1,10 @@ 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; /** @@ -21,6 +24,7 @@ import javax.xml.bind.annotation.XmlRegistry; @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 @@ -100,5 +104,15 @@ public class ObjectFactory { 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 createPvpToken(PvpTokenType value) { + return new JAXBElement(_PvpToken_QNAME, PvpTokenType.class, null, value); + } + } -- cgit v1.2.3