package at.gv.util.xsd.saml.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="IPAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="DNSAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SubjectLocalityType") public class SubjectLocalityType { @XmlAttribute(name = "IPAddress") protected String ipAddress; @XmlAttribute(name = "DNSAddress") protected String dnsAddress; /** * Ruft den Wert der ipAddress-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getIPAddress() { return ipAddress; } /** * Legt den Wert der ipAddress-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setIPAddress(String value) { this.ipAddress = value; } /** * Ruft den Wert der dnsAddress-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getDNSAddress() { return dnsAddress; } /** * Legt den Wert der dnsAddress-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setDNSAddress(String value) { this.dnsAddress = value; } }