summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/saml/v2_0/assertion/AttributeStatementType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/saml/v2_0/assertion/AttributeStatementType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/saml/v2_0/assertion/AttributeStatementType.java77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/saml/v2_0/assertion/AttributeStatementType.java b/src/main/java/at/gv/util/xsd/saml/v2_0/assertion/AttributeStatementType.java
new file mode 100644
index 0000000..a21e072
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/saml/v2_0/assertion/AttributeStatementType.java
@@ -0,0 +1,77 @@
+
+package at.gv.util.xsd.saml.v2_0.assertion;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlElements;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java-Klasse für AttributeStatementType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="AttributeStatementType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;extension base="{urn:oasis:names:tc:SAML:2.0:assertion}StatementAbstractType"&gt;
+ * &lt;choice maxOccurs="unbounded"&gt;
+ * &lt;element ref="{urn:oasis:names:tc:SAML:2.0:assertion}Attribute"/&gt;
+ * &lt;element ref="{urn:oasis:names:tc:SAML:2.0:assertion}EncryptedAttribute"/&gt;
+ * &lt;/choice&gt;
+ * &lt;/extension&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "AttributeStatementType", propOrder = {
+ "attributeOrEncryptedAttribute"
+})
+public class AttributeStatementType
+ extends StatementAbstractType
+{
+
+ @XmlElements({
+ @XmlElement(name = "Attribute", type = AttributeType.class),
+ @XmlElement(name = "EncryptedAttribute", type = EncryptedElementType.class)
+ })
+ protected List<Object> attributeOrEncryptedAttribute;
+
+ /**
+ * Gets the value of the attributeOrEncryptedAttribute property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the attributeOrEncryptedAttribute property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getAttributeOrEncryptedAttribute().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link AttributeType }
+ * {@link EncryptedElementType }
+ *
+ *
+ */
+ public List<Object> getAttributeOrEncryptedAttribute() {
+ if (attributeOrEncryptedAttribute == null) {
+ attributeOrEncryptedAttribute = new ArrayList<Object>();
+ }
+ return this.attributeOrEncryptedAttribute;
+ }
+
+}