All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.swedenconnect.schemas.saml_1_1.assertion.Attribute Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.02.24 at 11:49:44 AM CET 
//


package se.swedenconnect.schemas.saml_1_1.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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for AttributeType complex type. * *

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

 * <complexType name="AttributeType">
 *   <complexContent>
 *     <extension base="{urn:oasis:names:tc:SAML:1.0:assertion}AttributeDesignatorType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}AttributeValue" maxOccurs="unbounded"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttributeType", propOrder = { "attributeValues" }) @XmlRootElement(name = "Attribute") public class Attribute extends AttributeDesignatorType { @XmlElement(name = "AttributeValue", required = true) protected List attributeValues; /** * Gets the value of the attributeValues property. * *

* 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 set method for the attributeValues property. * *

* For example, to add a new item, do as follows: *

     *    getAttributeValues().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getAttributeValues() { if (attributeValues == null) { attributeValues = new ArrayList(); } return this.attributeValues; } public boolean isSetAttributeValues() { return ((this.attributeValues!= null)&&(!this.attributeValues.isEmpty())); } public void unsetAttributeValues() { this.attributeValues = null; } }