From 7a5b350a93990956106d91679240b6e8326cb110 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Wed, 5 Nov 2014 08:07:15 +0100 Subject: change more client implementations to APACHE CXF --- .../at/gv/util/xsd/saml/assertion/ActionType.java | 12 +- .../at/gv/util/xsd/saml/assertion/AdviceType.java | 10 +- .../gv/util/xsd/saml/assertion/AssertionType.java | 36 +++--- .../saml/assertion/AttributeDesignatorType.java | 12 +- .../xsd/saml/assertion/AttributeStatementType.java | 4 +- .../gv/util/xsd/saml/assertion/AttributeType.java | 4 +- .../AudienceRestrictionConditionType.java | 4 +- .../assertion/AuthenticationStatementType.java | 16 +-- .../xsd/saml/assertion/AuthorityBindingType.java | 16 +-- .../AuthorizationDecisionStatementType.java | 16 +-- .../xsd/saml/assertion/ConditionAbstractType.java | 4 +- .../gv/util/xsd/saml/assertion/ConditionsType.java | 12 +- .../gv/util/xsd/saml/assertion/DecisionType.java | 4 +- .../gv/util/xsd/saml/assertion/EvidenceType.java | 4 +- .../xsd/saml/assertion/NameIdentifierType.java | 16 +-- .../xsd/saml/assertion/StatementAbstractType.java | 4 +- .../saml/assertion/SubjectConfirmationType.java | 12 +- .../xsd/saml/assertion/SubjectLocalityType.java | 12 +- .../assertion/SubjectStatementAbstractType.java | 8 +- .../at/gv/util/xsd/saml/assertion/SubjectType.java | 24 ++-- .../util/xsd/saml/protocol/AttributeQueryType.java | 9 +- .../xsd/saml/protocol/AuthenticationQueryType.java | 8 +- .../protocol/AuthorizationDecisionQueryType.java | 13 +- .../gv/util/xsd/saml/protocol/ObjectFactory.java | 140 ++++++++++----------- .../util/xsd/saml/protocol/QueryAbstractType.java | 4 +- .../xsd/saml/protocol/RequestAbstractType.java | 25 ++-- .../at/gv/util/xsd/saml/protocol/RequestType.java | 24 ++-- .../xsd/saml/protocol/ResponseAbstractType.java | 33 +++-- .../at/gv/util/xsd/saml/protocol/ResponseType.java | 9 +- .../gv/util/xsd/saml/protocol/StatusCodeType.java | 12 +- .../util/xsd/saml/protocol/StatusDetailType.java | 6 +- .../at/gv/util/xsd/saml/protocol/StatusType.java | 16 +-- .../saml/protocol/SubjectQueryAbstractType.java | 13 +- 33 files changed, 268 insertions(+), 274 deletions(-) (limited to 'src/main/java/at/gv/util/xsd/saml') diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/ActionType.java b/src/main/java/at/gv/util/xsd/saml/assertion/ActionType.java index 36a5ef4..d50df5b 100644 --- a/src/main/java/at/gv/util/xsd/saml/assertion/ActionType.java +++ b/src/main/java/at/gv/util/xsd/saml/assertion/ActionType.java @@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlValue; /** - *

Java class for ActionType complex type. + *

Java-Klasse für ActionType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="ActionType">
@@ -39,7 +39,7 @@ public class ActionType {
     protected String namespace;
 
     /**
-     * Gets the value of the value property.
+     * Ruft den Wert der value-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -51,7 +51,7 @@ public class ActionType {
     }
 
     /**
-     * Sets the value of the value property.
+     * Legt den Wert der value-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -63,7 +63,7 @@ public class ActionType {
     }
 
     /**
-     * Gets the value of the namespace property.
+     * Ruft den Wert der namespace-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -75,7 +75,7 @@ public class ActionType {
     }
 
     /**
-     * Sets the value of the namespace property.
+     * Legt den Wert der namespace-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AdviceType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AdviceType.java
index c003fcc..be3a185 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AdviceType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AdviceType.java
@@ -14,9 +14,9 @@ import org.w3c.dom.Element;
 
 
 /**
- * 

Java class for AdviceType complex type. + *

Java-Klasse für AdviceType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AdviceType">
@@ -41,8 +41,8 @@ import org.w3c.dom.Element;
 public class AdviceType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "AssertionIDReference", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", type = JAXBElement.class),
-        @XmlElementRef(name = "Assertion", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", type = JAXBElement.class)
+        @XmlElementRef(name = "Assertion", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "AssertionIDReference", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", type = JAXBElement.class, required = false)
     })
     @XmlAnyElement(lax = true)
     protected List assertionIDReferenceOrAssertionOrAny;
@@ -67,8 +67,8 @@ public class AdviceType {
      * Objects of the following type(s) are allowed in the list
      * {@link Object }
      * {@link JAXBElement }{@code <}{@link String }{@code >}
-     * {@link Element }
      * {@link JAXBElement }{@code <}{@link AssertionType }{@code >}
+     * {@link Element }
      * 
      * 
      */
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AssertionType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AssertionType.java
index 027a40f..ba3ca58 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AssertionType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AssertionType.java
@@ -16,9 +16,9 @@ import at.gv.util.xsd.xmldsig.SignatureType;
 
 
 /**
- * 

Java class for AssertionType complex type. + *

Java-Klasse für AssertionType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AssertionType">
@@ -84,7 +84,7 @@ public class AssertionType {
     protected XMLGregorianCalendar issueInstant;
 
     /**
-     * Gets the value of the conditions property.
+     * Ruft den Wert der conditions-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -96,7 +96,7 @@ public class AssertionType {
     }
 
     /**
-     * Sets the value of the conditions property.
+     * Legt den Wert der conditions-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -108,7 +108,7 @@ public class AssertionType {
     }
 
     /**
-     * Gets the value of the advice property.
+     * Ruft den Wert der advice-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -120,7 +120,7 @@ public class AssertionType {
     }
 
     /**
-     * Sets the value of the advice property.
+     * Legt den Wert der advice-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -165,7 +165,7 @@ public class AssertionType {
     }
 
     /**
-     * Gets the value of the signature property.
+     * Ruft den Wert der signature-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -177,7 +177,7 @@ public class AssertionType {
     }
 
     /**
-     * Sets the value of the signature property.
+     * Legt den Wert der signature-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -189,7 +189,7 @@ public class AssertionType {
     }
 
     /**
-     * Gets the value of the majorVersion property.
+     * Ruft den Wert der majorVersion-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -201,7 +201,7 @@ public class AssertionType {
     }
 
     /**
-     * Sets the value of the majorVersion property.
+     * Legt den Wert der majorVersion-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -213,7 +213,7 @@ public class AssertionType {
     }
 
     /**
-     * Gets the value of the minorVersion property.
+     * Ruft den Wert der minorVersion-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -225,7 +225,7 @@ public class AssertionType {
     }
 
     /**
-     * Sets the value of the minorVersion property.
+     * Legt den Wert der minorVersion-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -237,7 +237,7 @@ public class AssertionType {
     }
 
     /**
-     * Gets the value of the assertionID property.
+     * Ruft den Wert der assertionID-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -249,7 +249,7 @@ public class AssertionType {
     }
 
     /**
-     * Sets the value of the assertionID property.
+     * Legt den Wert der assertionID-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -261,7 +261,7 @@ public class AssertionType {
     }
 
     /**
-     * Gets the value of the issuer property.
+     * Ruft den Wert der issuer-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -273,7 +273,7 @@ public class AssertionType {
     }
 
     /**
-     * Sets the value of the issuer property.
+     * Legt den Wert der issuer-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -285,7 +285,7 @@ public class AssertionType {
     }
 
     /**
-     * Gets the value of the issueInstant property.
+     * Ruft den Wert der issueInstant-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -297,7 +297,7 @@ public class AssertionType {
     }
 
     /**
-     * Sets the value of the issueInstant property.
+     * Legt den Wert der issueInstant-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AttributeDesignatorType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AttributeDesignatorType.java
index 4f03b19..48e1f01 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AttributeDesignatorType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AttributeDesignatorType.java
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for AttributeDesignatorType complex type. + *

Java-Klasse für AttributeDesignatorType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AttributeDesignatorType">
@@ -41,7 +41,7 @@ public class AttributeDesignatorType {
     protected String attributeNamespace;
 
     /**
-     * Gets the value of the attributeName property.
+     * Ruft den Wert der attributeName-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -53,7 +53,7 @@ public class AttributeDesignatorType {
     }
 
     /**
-     * Sets the value of the attributeName property.
+     * Legt den Wert der attributeName-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -65,7 +65,7 @@ public class AttributeDesignatorType {
     }
 
     /**
-     * Gets the value of the attributeNamespace property.
+     * Ruft den Wert der attributeNamespace-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -77,7 +77,7 @@ public class AttributeDesignatorType {
     }
 
     /**
-     * Sets the value of the attributeNamespace property.
+     * Legt den Wert der attributeNamespace-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AttributeStatementType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AttributeStatementType.java
index 8e499c4..33c0757 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AttributeStatementType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AttributeStatementType.java
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for AttributeStatementType complex type. + *

Java-Klasse für AttributeStatementType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AttributeStatementType">
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AttributeType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AttributeType.java
index 0f25e48..2ae4ebf 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AttributeType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AttributeType.java
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for AttributeType complex type. + *

Java-Klasse für AttributeType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AttributeType">
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AudienceRestrictionConditionType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AudienceRestrictionConditionType.java
index 7088eaa..525521c 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AudienceRestrictionConditionType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AudienceRestrictionConditionType.java
@@ -11,9 +11,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for AudienceRestrictionConditionType complex type. + *

Java-Klasse für AudienceRestrictionConditionType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AudienceRestrictionConditionType">
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AuthenticationStatementType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AuthenticationStatementType.java
index 48ae6e4..358f42d 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AuthenticationStatementType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AuthenticationStatementType.java
@@ -13,9 +13,9 @@ import javax.xml.datatype.XMLGregorianCalendar;
 
 
 /**
- * 

Java class for AuthenticationStatementType complex type. + *

Java-Klasse für AuthenticationStatementType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AuthenticationStatementType">
@@ -55,7 +55,7 @@ public class AuthenticationStatementType
     protected XMLGregorianCalendar authenticationInstant;
 
     /**
-     * Gets the value of the subjectLocality property.
+     * Ruft den Wert der subjectLocality-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -67,7 +67,7 @@ public class AuthenticationStatementType
     }
 
     /**
-     * Sets the value of the subjectLocality property.
+     * Legt den Wert der subjectLocality-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -108,7 +108,7 @@ public class AuthenticationStatementType
     }
 
     /**
-     * Gets the value of the authenticationMethod property.
+     * Ruft den Wert der authenticationMethod-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -120,7 +120,7 @@ public class AuthenticationStatementType
     }
 
     /**
-     * Sets the value of the authenticationMethod property.
+     * Legt den Wert der authenticationMethod-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -132,7 +132,7 @@ public class AuthenticationStatementType
     }
 
     /**
-     * Gets the value of the authenticationInstant property.
+     * Ruft den Wert der authenticationInstant-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -144,7 +144,7 @@ public class AuthenticationStatementType
     }
 
     /**
-     * Sets the value of the authenticationInstant property.
+     * Legt den Wert der authenticationInstant-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AuthorityBindingType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AuthorityBindingType.java
index 809411c..cfee5f5 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AuthorityBindingType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AuthorityBindingType.java
@@ -10,9 +10,9 @@ import javax.xml.namespace.QName;
 
 
 /**
- * 

Java class for AuthorityBindingType complex type. + *

Java-Klasse für AuthorityBindingType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AuthorityBindingType">
@@ -42,7 +42,7 @@ public class AuthorityBindingType {
     protected String binding;
 
     /**
-     * Gets the value of the authorityKind property.
+     * Ruft den Wert der authorityKind-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -54,7 +54,7 @@ public class AuthorityBindingType {
     }
 
     /**
-     * Sets the value of the authorityKind property.
+     * Legt den Wert der authorityKind-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -66,7 +66,7 @@ public class AuthorityBindingType {
     }
 
     /**
-     * Gets the value of the location property.
+     * Ruft den Wert der location-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -78,7 +78,7 @@ public class AuthorityBindingType {
     }
 
     /**
-     * Sets the value of the location property.
+     * Legt den Wert der location-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -90,7 +90,7 @@ public class AuthorityBindingType {
     }
 
     /**
-     * Gets the value of the binding property.
+     * Ruft den Wert der binding-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -102,7 +102,7 @@ public class AuthorityBindingType {
     }
 
     /**
-     * Sets the value of the binding property.
+     * Legt den Wert der binding-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/AuthorizationDecisionStatementType.java b/src/main/java/at/gv/util/xsd/saml/assertion/AuthorizationDecisionStatementType.java
index 035e3a0..3845826 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/AuthorizationDecisionStatementType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/AuthorizationDecisionStatementType.java
@@ -12,9 +12,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for AuthorizationDecisionStatementType complex type. + *

Java-Klasse für AuthorizationDecisionStatementType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AuthorizationDecisionStatementType">
@@ -82,7 +82,7 @@ public class AuthorizationDecisionStatementType
     }
 
     /**
-     * Gets the value of the evidence property.
+     * Ruft den Wert der evidence-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -94,7 +94,7 @@ public class AuthorizationDecisionStatementType
     }
 
     /**
-     * Sets the value of the evidence property.
+     * Legt den Wert der evidence-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -106,7 +106,7 @@ public class AuthorizationDecisionStatementType
     }
 
     /**
-     * Gets the value of the resource property.
+     * Ruft den Wert der resource-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -118,7 +118,7 @@ public class AuthorizationDecisionStatementType
     }
 
     /**
-     * Sets the value of the resource property.
+     * Legt den Wert der resource-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -130,7 +130,7 @@ public class AuthorizationDecisionStatementType
     }
 
     /**
-     * Gets the value of the decision property.
+     * Ruft den Wert der decision-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -142,7 +142,7 @@ public class AuthorizationDecisionStatementType
     }
 
     /**
-     * Sets the value of the decision property.
+     * Legt den Wert der decision-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/ConditionAbstractType.java b/src/main/java/at/gv/util/xsd/saml/assertion/ConditionAbstractType.java
index 31033e0..8b71c2a 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/ConditionAbstractType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/ConditionAbstractType.java
@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for ConditionAbstractType complex type. + *

Java-Klasse für ConditionAbstractType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="ConditionAbstractType">
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/ConditionsType.java b/src/main/java/at/gv/util/xsd/saml/assertion/ConditionsType.java
index 93689f5..3777198 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/ConditionsType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/ConditionsType.java
@@ -14,9 +14,9 @@ import javax.xml.datatype.XMLGregorianCalendar;
 
 
 /**
- * 

Java class for ConditionsType complex type. + *

Java-Klasse für ConditionsType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="ConditionsType">
@@ -84,7 +84,7 @@ public class ConditionsType {
     }
 
     /**
-     * Gets the value of the notBefore property.
+     * Ruft den Wert der notBefore-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -96,7 +96,7 @@ public class ConditionsType {
     }
 
     /**
-     * Sets the value of the notBefore property.
+     * Legt den Wert der notBefore-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -108,7 +108,7 @@ public class ConditionsType {
     }
 
     /**
-     * Gets the value of the notOnOrAfter property.
+     * Ruft den Wert der notOnOrAfter-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -120,7 +120,7 @@ public class ConditionsType {
     }
 
     /**
-     * Sets the value of the notOnOrAfter property.
+     * Legt den Wert der notOnOrAfter-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/DecisionType.java b/src/main/java/at/gv/util/xsd/saml/assertion/DecisionType.java
index 01befe4..b7d8678 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/DecisionType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/DecisionType.java
@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for DecisionType. + *

Java-Klasse für DecisionType. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. *

*

  * <simpleType name="DecisionType">
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/EvidenceType.java b/src/main/java/at/gv/util/xsd/saml/assertion/EvidenceType.java
index 9a25910..f2c562b 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/EvidenceType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/EvidenceType.java
@@ -11,9 +11,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for EvidenceType complex type. + *

Java-Klasse für EvidenceType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="EvidenceType">
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/NameIdentifierType.java b/src/main/java/at/gv/util/xsd/saml/assertion/NameIdentifierType.java
index fd14e84..d7f6b15 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/NameIdentifierType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/NameIdentifierType.java
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlValue;
 
 
 /**
- * 

Java class for NameIdentifierType complex type. + *

Java-Klasse für NameIdentifierType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="NameIdentifierType">
@@ -42,7 +42,7 @@ public class NameIdentifierType {
     protected String format;
 
     /**
-     * Gets the value of the value property.
+     * Ruft den Wert der value-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -54,7 +54,7 @@ public class NameIdentifierType {
     }
 
     /**
-     * Sets the value of the value property.
+     * Legt den Wert der value-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -66,7 +66,7 @@ public class NameIdentifierType {
     }
 
     /**
-     * Gets the value of the nameQualifier property.
+     * Ruft den Wert der nameQualifier-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -78,7 +78,7 @@ public class NameIdentifierType {
     }
 
     /**
-     * Sets the value of the nameQualifier property.
+     * Legt den Wert der nameQualifier-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -90,7 +90,7 @@ public class NameIdentifierType {
     }
 
     /**
-     * Gets the value of the format property.
+     * Ruft den Wert der format-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -102,7 +102,7 @@ public class NameIdentifierType {
     }
 
     /**
-     * Sets the value of the format property.
+     * Legt den Wert der format-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/StatementAbstractType.java b/src/main/java/at/gv/util/xsd/saml/assertion/StatementAbstractType.java
index b9dfff5..62c3bab 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/StatementAbstractType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/StatementAbstractType.java
@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for StatementAbstractType complex type. + *

Java-Klasse für StatementAbstractType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="StatementAbstractType">
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/SubjectConfirmationType.java b/src/main/java/at/gv/util/xsd/saml/assertion/SubjectConfirmationType.java
index 76e8a9b..de11a65 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/SubjectConfirmationType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/SubjectConfirmationType.java
@@ -12,9 +12,9 @@ import at.gv.util.xsd.xmldsig.KeyInfoType;
 
 
 /**
- * 

Java class for SubjectConfirmationType complex type. + *

Java-Klasse für SubjectConfirmationType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="SubjectConfirmationType">
@@ -78,7 +78,7 @@ public class SubjectConfirmationType {
     }
 
     /**
-     * Gets the value of the subjectConfirmationData property.
+     * Ruft den Wert der subjectConfirmationData-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -90,7 +90,7 @@ public class SubjectConfirmationType {
     }
 
     /**
-     * Sets the value of the subjectConfirmationData property.
+     * Legt den Wert der subjectConfirmationData-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -102,7 +102,7 @@ public class SubjectConfirmationType {
     }
 
     /**
-     * Gets the value of the keyInfo property.
+     * Ruft den Wert der keyInfo-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -114,7 +114,7 @@ public class SubjectConfirmationType {
     }
 
     /**
-     * Sets the value of the keyInfo property.
+     * Legt den Wert der keyInfo-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/SubjectLocalityType.java b/src/main/java/at/gv/util/xsd/saml/assertion/SubjectLocalityType.java
index 1bd0eb7..1d5e6df 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/SubjectLocalityType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/SubjectLocalityType.java
@@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for SubjectLocalityType complex type. + *

Java-Klasse für SubjectLocalityType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="SubjectLocalityType">
@@ -35,7 +35,7 @@ public class SubjectLocalityType {
     protected String dnsAddress;
 
     /**
-     * Gets the value of the ipAddress property.
+     * Ruft den Wert der ipAddress-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -47,7 +47,7 @@ public class SubjectLocalityType {
     }
 
     /**
-     * Sets the value of the ipAddress property.
+     * Legt den Wert der ipAddress-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -59,7 +59,7 @@ public class SubjectLocalityType {
     }
 
     /**
-     * Gets the value of the dnsAddress property.
+     * Ruft den Wert der dnsAddress-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -71,7 +71,7 @@ public class SubjectLocalityType {
     }
 
     /**
-     * Sets the value of the dnsAddress property.
+     * Legt den Wert der dnsAddress-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/SubjectStatementAbstractType.java b/src/main/java/at/gv/util/xsd/saml/assertion/SubjectStatementAbstractType.java
index 601815a..a92aeb6 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/SubjectStatementAbstractType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/SubjectStatementAbstractType.java
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for SubjectStatementAbstractType complex type. + *

Java-Klasse für SubjectStatementAbstractType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="SubjectStatementAbstractType">
@@ -44,7 +44,7 @@ public abstract class SubjectStatementAbstractType
     protected SubjectType subject;
 
     /**
-     * Gets the value of the subject property.
+     * Ruft den Wert der subject-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -56,7 +56,7 @@ public abstract class SubjectStatementAbstractType
     }
 
     /**
-     * Sets the value of the subject property.
+     * Legt den Wert der subject-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/assertion/SubjectType.java b/src/main/java/at/gv/util/xsd/saml/assertion/SubjectType.java
index 9f47967..1af4b9f 100644
--- a/src/main/java/at/gv/util/xsd/saml/assertion/SubjectType.java
+++ b/src/main/java/at/gv/util/xsd/saml/assertion/SubjectType.java
@@ -12,9 +12,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for SubjectType complex type. + *

Java-Klasse für SubjectType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="SubjectType">
@@ -41,22 +41,22 @@ import javax.xml.bind.annotation.XmlType;
 public class SubjectType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "SubjectConfirmation", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", type = JAXBElement.class),
-        @XmlElementRef(name = "NameIdentifier", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", type = JAXBElement.class)
+        @XmlElementRef(name = "NameIdentifier", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", type = JAXBElement.class, required = false),
+        @XmlElementRef(name = "SubjectConfirmation", namespace = "urn:oasis:names:tc:SAML:1.0:assertion", type = JAXBElement.class, required = false)
     })
     protected List> content;
 
     /**
-     * Gets the rest of the content model. 
+     * Ruft das restliche Contentmodell ab. 
      * 
      * 

- * You are getting this "catch-all" property because of the following reason: - * The field name "SubjectConfirmation" is used by two different parts of a schema. See: - * line 94 of file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/cs-sstc-schema-assertion-01.xsd - * line 92 of file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/cs-sstc-schema-assertion-01.xsd + * Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab: + * Der Feldname "SubjectConfirmation" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe: + * Zeile 94 von file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/cs-sstc-schema-assertion-01.xsd + * Zeile 92 von file:/D:/Projekte/svn/online-vollmachten/egovutils/src/main/resources/wsdl/cs-sstc-schema-assertion-01.xsd *

- * To get rid of this property, apply a property customization to one - * of both of the following declarations to change their names: + * Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine + * der beiden folgenden Deklarationen an, um deren Namen zu ändern: * Gets the value of the content property. * *

@@ -74,8 +74,8 @@ public class SubjectType { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link NameIdentifierType }{@code >} * {@link JAXBElement }{@code <}{@link SubjectConfirmationType }{@code >} + * {@link JAXBElement }{@code <}{@link NameIdentifierType }{@code >} * * */ diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/AttributeQueryType.java b/src/main/java/at/gv/util/xsd/saml/protocol/AttributeQueryType.java index e1beeb4..23b7923 100644 --- a/src/main/java/at/gv/util/xsd/saml/protocol/AttributeQueryType.java +++ b/src/main/java/at/gv/util/xsd/saml/protocol/AttributeQueryType.java @@ -9,14 +9,13 @@ import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; - import at.gv.util.xsd.saml.assertion.AttributeDesignatorType; /** - *

Java class for AttributeQueryType complex type. + *

Java-Klasse für AttributeQueryType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AttributeQueryType">
@@ -77,7 +76,7 @@ public class AttributeQueryType
     }
 
     /**
-     * Gets the value of the resource property.
+     * Ruft den Wert der resource-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -89,7 +88,7 @@ public class AttributeQueryType
     }
 
     /**
-     * Sets the value of the resource property.
+     * Legt den Wert der resource-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/AuthenticationQueryType.java b/src/main/java/at/gv/util/xsd/saml/protocol/AuthenticationQueryType.java
index d5e0be0..1ea23e6 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/AuthenticationQueryType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/AuthenticationQueryType.java
@@ -9,9 +9,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for AuthenticationQueryType complex type. + *

Java-Klasse für AuthenticationQueryType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AuthenticationQueryType">
@@ -36,7 +36,7 @@ public class AuthenticationQueryType
     protected String authenticationMethod;
 
     /**
-     * Gets the value of the authenticationMethod property.
+     * Ruft den Wert der authenticationMethod-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -48,7 +48,7 @@ public class AuthenticationQueryType
     }
 
     /**
-     * Sets the value of the authenticationMethod property.
+     * Legt den Wert der authenticationMethod-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/AuthorizationDecisionQueryType.java b/src/main/java/at/gv/util/xsd/saml/protocol/AuthorizationDecisionQueryType.java
index 78b7c31..57dd27f 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/AuthorizationDecisionQueryType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/AuthorizationDecisionQueryType.java
@@ -9,15 +9,14 @@ import javax.xml.bind.annotation.XmlAttribute;
 import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlSchemaType;
 import javax.xml.bind.annotation.XmlType;
-
 import at.gv.util.xsd.saml.assertion.ActionType;
 import at.gv.util.xsd.saml.assertion.EvidenceType;
 
 
 /**
- * 

Java class for AuthorizationDecisionQueryType complex type. + *

Java-Klasse für AuthorizationDecisionQueryType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="AuthorizationDecisionQueryType">
@@ -82,7 +81,7 @@ public class AuthorizationDecisionQueryType
     }
 
     /**
-     * Gets the value of the evidence property.
+     * Ruft den Wert der evidence-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -94,7 +93,7 @@ public class AuthorizationDecisionQueryType
     }
 
     /**
-     * Sets the value of the evidence property.
+     * Legt den Wert der evidence-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -106,7 +105,7 @@ public class AuthorizationDecisionQueryType
     }
 
     /**
-     * Gets the value of the resource property.
+     * Ruft den Wert der resource-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -118,7 +117,7 @@ public class AuthorizationDecisionQueryType
     }
 
     /**
-     * Sets the value of the resource property.
+     * Legt den Wert der resource-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/ObjectFactory.java b/src/main/java/at/gv/util/xsd/saml/protocol/ObjectFactory.java
index fc3010d..772546b 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/ObjectFactory.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/ObjectFactory.java
@@ -10,7 +10,7 @@ import javax.xml.namespace.QName;
 /**
  * This object contains factory methods for each 
  * Java content interface and Java element interface 
- * generated in the at.gv.zustellung.util.xsd.saml.protocol package. 
+ * generated in the at.gv.util.xsd.saml.protocol package. 
  * 

An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML @@ -24,22 +24,22 @@ import javax.xml.namespace.QName; @XmlRegistry public class ObjectFactory { - private final static QName _Query_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "Query"); private final static QName _Request_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "Request"); - private final static QName _Status_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "Status"); private final static QName _SubjectQuery_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "SubjectQuery"); private final static QName _AttributeQuery_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "AttributeQuery"); - private final static QName _AuthorizationDecisionQuery_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "AuthorizationDecisionQuery"); private final static QName _Response_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "Response"); - private final static QName _AuthenticationQuery_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "AuthenticationQuery"); private final static QName _AssertionArtifact_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "AssertionArtifact"); - private final static QName _StatusCode_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "StatusCode"); private final static QName _RespondWith_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "RespondWith"); private final static QName _StatusMessage_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "StatusMessage"); private final static QName _StatusDetail_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "StatusDetail"); + private final static QName _Query_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "Query"); + private final static QName _Status_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "Status"); + private final static QName _AuthorizationDecisionQuery_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "AuthorizationDecisionQuery"); + private final static QName _AuthenticationQuery_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "AuthenticationQuery"); + private final static QName _StatusCode_QNAME = new QName("urn:oasis:names:tc:SAML:1.0:protocol", "StatusCode"); /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.zustellung.util.xsd.saml.protocol + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.util.xsd.saml.protocol * */ public ObjectFactory() { @@ -54,19 +54,19 @@ public class ObjectFactory { } /** - * Create an instance of {@link RequestType } + * Create an instance of {@link AuthorizationDecisionQueryType } * */ - public RequestType createRequestType() { - return new RequestType(); + public AuthorizationDecisionQueryType createAuthorizationDecisionQueryType() { + return new AuthorizationDecisionQueryType(); } /** - * Create an instance of {@link AuthenticationQueryType } + * Create an instance of {@link StatusType } * */ - public AuthenticationQueryType createAuthenticationQueryType() { - return new AuthenticationQueryType(); + public StatusType createStatusType() { + return new StatusType(); } /** @@ -78,44 +78,35 @@ public class ObjectFactory { } /** - * Create an instance of {@link AttributeQueryType } - * - */ - public AttributeQueryType createAttributeQueryType() { - return new AttributeQueryType(); - } - - /** - * Create an instance of {@link StatusType } + * Create an instance of {@link RequestType } * */ - public StatusType createStatusType() { - return new StatusType(); + public RequestType createRequestType() { + return new RequestType(); } /** - * Create an instance of {@link AuthorizationDecisionQueryType } + * Create an instance of {@link StatusDetailType } * */ - public AuthorizationDecisionQueryType createAuthorizationDecisionQueryType() { - return new AuthorizationDecisionQueryType(); + public StatusDetailType createStatusDetailType() { + return new StatusDetailType(); } /** - * Create an instance of {@link StatusDetailType } + * Create an instance of {@link AttributeQueryType } * */ - public StatusDetailType createStatusDetailType() { - return new StatusDetailType(); + public AttributeQueryType createAttributeQueryType() { + return new AttributeQueryType(); } /** - * Create an instance of {@link JAXBElement }{@code <}{@link QueryAbstractType }{@code >}} + * Create an instance of {@link AuthenticationQueryType } * */ - @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "Query") - public JAXBElement createQuery(QueryAbstractType value) { - return new JAXBElement(_Query_QNAME, QueryAbstractType.class, null, value); + public AuthenticationQueryType createAuthenticationQueryType() { + return new AuthenticationQueryType(); } /** @@ -127,15 +118,6 @@ public class ObjectFactory { return new JAXBElement(_Request_QNAME, RequestType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link StatusType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "Status") - public JAXBElement createStatus(StatusType value) { - return new JAXBElement(_Status_QNAME, StatusType.class, null, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link SubjectQueryAbstractType }{@code >}} * @@ -154,15 +136,6 @@ public class ObjectFactory { return new JAXBElement(_AttributeQuery_QNAME, AttributeQueryType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AuthorizationDecisionQueryType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "AuthorizationDecisionQuery") - public JAXBElement createAuthorizationDecisionQuery(AuthorizationDecisionQueryType value) { - return new JAXBElement(_AuthorizationDecisionQuery_QNAME, AuthorizationDecisionQueryType.class, null, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link ResponseType }{@code >}} * @@ -172,15 +145,6 @@ public class ObjectFactory { return new JAXBElement(_Response_QNAME, ResponseType.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AuthenticationQueryType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "AuthenticationQuery") - public JAXBElement createAuthenticationQuery(AuthenticationQueryType value) { - return new JAXBElement(_AuthenticationQuery_QNAME, AuthenticationQueryType.class, null, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * @@ -190,15 +154,6 @@ public class ObjectFactory { return new JAXBElement(_AssertionArtifact_QNAME, String.class, null, value); } - /** - * Create an instance of {@link JAXBElement }{@code <}{@link StatusCodeType }{@code >}} - * - */ - @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "StatusCode") - public JAXBElement createStatusCode(StatusCodeType value) { - return new JAXBElement(_StatusCode_QNAME, StatusCodeType.class, null, value); - } - /** * Create an instance of {@link JAXBElement }{@code <}{@link QName }{@code >}} * @@ -226,4 +181,49 @@ public class ObjectFactory { return new JAXBElement(_StatusDetail_QNAME, StatusDetailType.class, null, value); } + /** + * Create an instance of {@link JAXBElement }{@code <}{@link QueryAbstractType }{@code >}} + * + */ + @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "Query") + public JAXBElement createQuery(QueryAbstractType value) { + return new JAXBElement(_Query_QNAME, QueryAbstractType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link StatusType }{@code >}} + * + */ + @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "Status") + public JAXBElement createStatus(StatusType value) { + return new JAXBElement(_Status_QNAME, StatusType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AuthorizationDecisionQueryType }{@code >}} + * + */ + @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "AuthorizationDecisionQuery") + public JAXBElement createAuthorizationDecisionQuery(AuthorizationDecisionQueryType value) { + return new JAXBElement(_AuthorizationDecisionQuery_QNAME, AuthorizationDecisionQueryType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AuthenticationQueryType }{@code >}} + * + */ + @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "AuthenticationQuery") + public JAXBElement createAuthenticationQuery(AuthenticationQueryType value) { + return new JAXBElement(_AuthenticationQuery_QNAME, AuthenticationQueryType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link StatusCodeType }{@code >}} + * + */ + @XmlElementDecl(namespace = "urn:oasis:names:tc:SAML:1.0:protocol", name = "StatusCode") + public JAXBElement createStatusCode(StatusCodeType value) { + return new JAXBElement(_StatusCode_QNAME, StatusCodeType.class, null, value); + } + } diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/QueryAbstractType.java b/src/main/java/at/gv/util/xsd/saml/protocol/QueryAbstractType.java index a6b82ae..788c2be 100644 --- a/src/main/java/at/gv/util/xsd/saml/protocol/QueryAbstractType.java +++ b/src/main/java/at/gv/util/xsd/saml/protocol/QueryAbstractType.java @@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType; /** - *

Java class for QueryAbstractType complex type. + *

Java-Klasse für QueryAbstractType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="QueryAbstractType">
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/RequestAbstractType.java b/src/main/java/at/gv/util/xsd/saml/protocol/RequestAbstractType.java
index 337ebd5..3384b40 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/RequestAbstractType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/RequestAbstractType.java
@@ -13,14 +13,13 @@ import javax.xml.bind.annotation.XmlSeeAlso;
 import javax.xml.bind.annotation.XmlType;
 import javax.xml.datatype.XMLGregorianCalendar;
 import javax.xml.namespace.QName;
-
 import at.gv.util.xsd.xmldsig.SignatureType;
 
 
 /**
- * 

Java class for RequestAbstractType complex type. + *

Java-Klasse für RequestAbstractType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="RequestAbstractType">
@@ -95,7 +94,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Gets the value of the signature property.
+     * Ruft den Wert der signature-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -107,7 +106,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Sets the value of the signature property.
+     * Legt den Wert der signature-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -119,7 +118,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Gets the value of the requestID property.
+     * Ruft den Wert der requestID-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -131,7 +130,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Sets the value of the requestID property.
+     * Legt den Wert der requestID-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -143,7 +142,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Gets the value of the majorVersion property.
+     * Ruft den Wert der majorVersion-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -155,7 +154,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Sets the value of the majorVersion property.
+     * Legt den Wert der majorVersion-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -167,7 +166,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Gets the value of the minorVersion property.
+     * Ruft den Wert der minorVersion-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -179,7 +178,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Sets the value of the minorVersion property.
+     * Legt den Wert der minorVersion-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -191,7 +190,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Gets the value of the issueInstant property.
+     * Ruft den Wert der issueInstant-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -203,7 +202,7 @@ public abstract class RequestAbstractType {
     }
 
     /**
-     * Sets the value of the issueInstant property.
+     * Legt den Wert der issueInstant-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/RequestType.java b/src/main/java/at/gv/util/xsd/saml/protocol/RequestType.java
index 1d08847..35f8b5e 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/RequestType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/RequestType.java
@@ -10,9 +10,9 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * 

Java class for RequestType complex type. + *

Java-Klasse für RequestType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="RequestType">
@@ -64,7 +64,7 @@ public class RequestType
     protected List assertionArtifact;
 
     /**
-     * Gets the value of the query property.
+     * Ruft den Wert der query-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -76,7 +76,7 @@ public class RequestType
     }
 
     /**
-     * Sets the value of the query property.
+     * Legt den Wert der query-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -88,7 +88,7 @@ public class RequestType
     }
 
     /**
-     * Gets the value of the subjectQuery property.
+     * Ruft den Wert der subjectQuery-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -100,7 +100,7 @@ public class RequestType
     }
 
     /**
-     * Sets the value of the subjectQuery property.
+     * Legt den Wert der subjectQuery-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -112,7 +112,7 @@ public class RequestType
     }
 
     /**
-     * Gets the value of the authenticationQuery property.
+     * Ruft den Wert der authenticationQuery-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -124,7 +124,7 @@ public class RequestType
     }
 
     /**
-     * Sets the value of the authenticationQuery property.
+     * Legt den Wert der authenticationQuery-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -136,7 +136,7 @@ public class RequestType
     }
 
     /**
-     * Gets the value of the attributeQuery property.
+     * Ruft den Wert der attributeQuery-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -148,7 +148,7 @@ public class RequestType
     }
 
     /**
-     * Sets the value of the attributeQuery property.
+     * Legt den Wert der attributeQuery-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -160,7 +160,7 @@ public class RequestType
     }
 
     /**
-     * Gets the value of the authorizationDecisionQuery property.
+     * Ruft den Wert der authorizationDecisionQuery-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -172,7 +172,7 @@ public class RequestType
     }
 
     /**
-     * Sets the value of the authorizationDecisionQuery property.
+     * Legt den Wert der authorizationDecisionQuery-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/ResponseAbstractType.java b/src/main/java/at/gv/util/xsd/saml/protocol/ResponseAbstractType.java
index 6e35e87..c446452 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/ResponseAbstractType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/ResponseAbstractType.java
@@ -10,14 +10,13 @@ import javax.xml.bind.annotation.XmlSchemaType;
 import javax.xml.bind.annotation.XmlSeeAlso;
 import javax.xml.bind.annotation.XmlType;
 import javax.xml.datatype.XMLGregorianCalendar;
-
 import at.gv.util.xsd.xmldsig.SignatureType;
 
 
 /**
- * 

Java class for ResponseAbstractType complex type. + *

Java-Klasse für ResponseAbstractType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="ResponseAbstractType">
@@ -66,7 +65,7 @@ public abstract class ResponseAbstractType {
     protected String recipient;
 
     /**
-     * Gets the value of the signature property.
+     * Ruft den Wert der signature-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -78,7 +77,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Sets the value of the signature property.
+     * Legt den Wert der signature-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -90,7 +89,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Gets the value of the responseID property.
+     * Ruft den Wert der responseID-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -102,7 +101,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Sets the value of the responseID property.
+     * Legt den Wert der responseID-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -114,7 +113,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Gets the value of the inResponseTo property.
+     * Ruft den Wert der inResponseTo-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -126,7 +125,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Sets the value of the inResponseTo property.
+     * Legt den Wert der inResponseTo-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -138,7 +137,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Gets the value of the majorVersion property.
+     * Ruft den Wert der majorVersion-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -150,7 +149,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Sets the value of the majorVersion property.
+     * Legt den Wert der majorVersion-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -162,7 +161,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Gets the value of the minorVersion property.
+     * Ruft den Wert der minorVersion-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -174,7 +173,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Sets the value of the minorVersion property.
+     * Legt den Wert der minorVersion-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -186,7 +185,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Gets the value of the issueInstant property.
+     * Ruft den Wert der issueInstant-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -198,7 +197,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Sets the value of the issueInstant property.
+     * Legt den Wert der issueInstant-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -210,7 +209,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Gets the value of the recipient property.
+     * Ruft den Wert der recipient-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -222,7 +221,7 @@ public abstract class ResponseAbstractType {
     }
 
     /**
-     * Sets the value of the recipient property.
+     * Legt den Wert der recipient-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/ResponseType.java b/src/main/java/at/gv/util/xsd/saml/protocol/ResponseType.java
index f69b0d5..0d92209 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/ResponseType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/ResponseType.java
@@ -7,14 +7,13 @@ import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlType;
-
 import at.gv.util.xsd.saml.assertion.AssertionType;
 
 
 /**
- * 

Java class for ResponseType complex type. + *

Java-Klasse für ResponseType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="ResponseType">
@@ -46,7 +45,7 @@ public class ResponseType
     protected List assertion;
 
     /**
-     * Gets the value of the status property.
+     * Ruft den Wert der status-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -58,7 +57,7 @@ public class ResponseType
     }
 
     /**
-     * Sets the value of the status property.
+     * Legt den Wert der status-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/StatusCodeType.java b/src/main/java/at/gv/util/xsd/saml/protocol/StatusCodeType.java
index 7ec76d6..c0273cf 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/StatusCodeType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/StatusCodeType.java
@@ -10,9 +10,9 @@ import javax.xml.namespace.QName;
 
 
 /**
- * 

Java class for StatusCodeType complex type. + *

Java-Klasse für StatusCodeType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="StatusCodeType">
@@ -41,7 +41,7 @@ public class StatusCodeType {
     protected QName value;
 
     /**
-     * Gets the value of the statusCode property.
+     * Ruft den Wert der statusCode-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -53,7 +53,7 @@ public class StatusCodeType {
     }
 
     /**
-     * Sets the value of the statusCode property.
+     * Legt den Wert der statusCode-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -65,7 +65,7 @@ public class StatusCodeType {
     }
 
     /**
-     * Gets the value of the value property.
+     * Ruft den Wert der value-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -77,7 +77,7 @@ public class StatusCodeType {
     }
 
     /**
-     * Sets the value of the value property.
+     * Legt den Wert der value-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/StatusDetailType.java b/src/main/java/at/gv/util/xsd/saml/protocol/StatusDetailType.java
index 635afd8..878d556 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/StatusDetailType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/StatusDetailType.java
@@ -11,9 +11,9 @@ import org.w3c.dom.Element;
 
 
 /**
- * 

Java class for StatusDetailType complex type. + *

Java-Klasse für StatusDetailType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="StatusDetailType">
@@ -56,8 +56,8 @@ public class StatusDetailType {
      * 
      * 

* Objects of the following type(s) are allowed in the list - * {@link Element } * {@link Object } + * {@link Element } * * */ diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/StatusType.java b/src/main/java/at/gv/util/xsd/saml/protocol/StatusType.java index efad7bb..f5caceb 100644 --- a/src/main/java/at/gv/util/xsd/saml/protocol/StatusType.java +++ b/src/main/java/at/gv/util/xsd/saml/protocol/StatusType.java @@ -8,9 +8,9 @@ import javax.xml.bind.annotation.XmlType; /** - *

Java class for StatusType complex type. + *

Java-Klasse für StatusType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="StatusType">
@@ -44,7 +44,7 @@ public class StatusType {
     protected StatusDetailType statusDetail;
 
     /**
-     * Gets the value of the statusCode property.
+     * Ruft den Wert der statusCode-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -56,7 +56,7 @@ public class StatusType {
     }
 
     /**
-     * Sets the value of the statusCode property.
+     * Legt den Wert der statusCode-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -68,7 +68,7 @@ public class StatusType {
     }
 
     /**
-     * Gets the value of the statusMessage property.
+     * Ruft den Wert der statusMessage-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -80,7 +80,7 @@ public class StatusType {
     }
 
     /**
-     * Sets the value of the statusMessage property.
+     * Legt den Wert der statusMessage-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
@@ -92,7 +92,7 @@ public class StatusType {
     }
 
     /**
-     * Gets the value of the statusDetail property.
+     * Ruft den Wert der statusDetail-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -104,7 +104,7 @@ public class StatusType {
     }
 
     /**
-     * Sets the value of the statusDetail property.
+     * Legt den Wert der statusDetail-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
diff --git a/src/main/java/at/gv/util/xsd/saml/protocol/SubjectQueryAbstractType.java b/src/main/java/at/gv/util/xsd/saml/protocol/SubjectQueryAbstractType.java
index 9cb28cb..5568bf5 100644
--- a/src/main/java/at/gv/util/xsd/saml/protocol/SubjectQueryAbstractType.java
+++ b/src/main/java/at/gv/util/xsd/saml/protocol/SubjectQueryAbstractType.java
@@ -6,14 +6,13 @@ import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlSeeAlso;
 import javax.xml.bind.annotation.XmlType;
-
 import at.gv.util.xsd.saml.assertion.SubjectType;
 
 
 /**
- * 

Java class for SubjectQueryAbstractType complex type. + *

Java-Klasse für SubjectQueryAbstractType complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

  * <complexType name="SubjectQueryAbstractType">
@@ -35,8 +34,8 @@ import at.gv.util.xsd.saml.assertion.SubjectType;
 })
 @XmlSeeAlso({
     AuthorizationDecisionQueryType.class,
-    AuthenticationQueryType.class,
-    AttributeQueryType.class
+    AttributeQueryType.class,
+    AuthenticationQueryType.class
 })
 public abstract class SubjectQueryAbstractType
     extends QueryAbstractType
@@ -46,7 +45,7 @@ public abstract class SubjectQueryAbstractType
     protected SubjectType subject;
 
     /**
-     * Gets the value of the subject property.
+     * Ruft den Wert der subject-Eigenschaft ab.
      * 
      * @return
      *     possible object is
@@ -58,7 +57,7 @@ public abstract class SubjectQueryAbstractType
     }
 
     /**
-     * Sets the value of the subject property.
+     * Legt den Wert der subject-Eigenschaft fest.
      * 
      * @param value
      *     allowed object is
-- 
cgit v1.2.3