// // 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.protocol; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for IDPEntryType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="IDPEntryType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="ProviderID" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="Loc" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IDPEntryType") public class IDPEntryType { @XmlAttribute(name = "ProviderID", required = true) @XmlSchemaType(name = "anyURI") protected String providerID; @XmlAttribute(name = "Name") protected String name; @XmlAttribute(name = "Loc") @XmlSchemaType(name = "anyURI") protected String loc; /** * Gets the value of the providerID property. * * @return * possible object is * {@link String } * */ public String getProviderID() { return providerID; } /** * Sets the value of the providerID property. * * @param value * allowed object is * {@link String } * */ public void setProviderID(String value) { this.providerID = value; } /** * 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 loc property. * * @return * possible object is * {@link String } * */ public String getLoc() { return loc; } /** * Sets the value of the loc property. * * @param value * allowed object is * {@link String } * */ public void setLoc(String value) { this.loc = value; } }