diff options
author | Thomas <> | 2021-09-02 14:29:10 +0200 |
---|---|---|
committer | Thomas <> | 2021-09-02 14:29:10 +0200 |
commit | c143af0cde1642e3b87054f185a9bcd14a1a6dbe (patch) | |
tree | 97dfee8a0e569378c891d5140b9789717e4d59b2 | |
parent | 0832d1c02d4e73dd8ce9c79467631a41ed543c8f (diff) | |
download | egovutils-c143af0cde1642e3b87054f185a9bcd14a1a6dbe.tar.gz egovutils-c143af0cde1642e3b87054f185a9bcd14a1a6dbe.tar.bz2 egovutils-c143af0cde1642e3b87054f185a9bcd14a1a6dbe.zip |
add missing method after rebuild of SZR clients
-rw-r--r-- | src/main/java/at/gv/util/xsd/szr/pvp19/ObjectFactory.java | 15 |
1 files changed, 14 insertions, 1 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 e731d10..4bed24a 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 @@ -108,5 +112,14 @@ 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<PvpTokenType> createPvpToken(PvpTokenType value) { + return new JAXBElement<PvpTokenType>(_PvpToken_QNAME, PvpTokenType.class, null, value); + } + } |