// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.05.06 at 06:41:10 PM CEST // package de.groothues.mysaml.assertion; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; 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 javax.xml.namespace.QName; /** * <p>Java class for AttributeType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AttributeType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AttributeValue" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="NameFormat" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="FriendlyName" type="{http://www.w3.org/2001/XMLSchema}string" /> * <anyAttribute processContents='lax' namespace='##other'/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AttributeType", propOrder = { "attributeValue" }) public class AttributeType { @XmlElement(name = "AttributeValue", nillable = true) protected List<Object> attributeValue; @XmlAttribute(name = "Name", required = true) protected String name; @XmlAttribute(name = "NameFormat") @XmlSchemaType(name = "anyURI") protected String nameFormat; @XmlAttribute(name = "FriendlyName") protected String friendlyName; @XmlAnyAttribute private Map<QName, String> otherAttributes = new HashMap<QName, String>(); /** * Gets the value of the attributeValue 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 attributeValue property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAttributeValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getAttributeValue() { if (attributeValue == null) { attributeValue = new ArrayList<Object>(); } return this.attributeValue; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the nameFormat property. * * @return * possible object is * {@link String } * */ public String getNameFormat() { return nameFormat; } /** * Sets the value of the nameFormat property. * * @param value * allowed object is * {@link String } * */ public void setNameFormat(String value) { this.nameFormat = value; } /** * Gets the value of the friendlyName property. * * @return * possible object is * {@link String } * */ public String getFriendlyName() { return friendlyName; } /** * Sets the value of the friendlyName property. * * @param value * allowed object is * {@link String } * */ public void setFriendlyName(String value) { this.friendlyName = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * * <p> * the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map<QName, String> getOtherAttributes() { return otherAttributes; } }