package at.gv.util.xsd.saml.v2_0.assertion; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** *

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

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

 * <complexType name="SubjectLocalityType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="Address" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="DNSName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubjectLocalityType") public class SubjectLocalityType { @XmlAttribute(name = "Address") protected String address; @XmlAttribute(name = "DNSName") protected String dnsName; /** * Ruft den Wert der address-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getAddress() { return address; } /** * Legt den Wert der address-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Ruft den Wert der dnsName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getDNSName() { return dnsName; } /** * Legt den Wert der dnsName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setDNSName(String value) { this.dnsName = value; } }