package at.gv.util.xsd.saml.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; /** *

Java class for AuthenticationQueryType complex type. * *

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

 * <complexType name="AuthenticationQueryType">
 *   <complexContent>
 *     <extension base="{urn:oasis:names:tc:SAML:1.0:protocol}SubjectQueryAbstractType">
 *       <attribute name="AuthenticationMethod" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuthenticationQueryType") public class AuthenticationQueryType extends SubjectQueryAbstractType { @XmlAttribute(name = "AuthenticationMethod") @XmlSchemaType(name = "anyURI") protected String authenticationMethod; /** * Gets the value of the authenticationMethod property. * * @return * possible object is * {@link String } * */ public String getAuthenticationMethod() { return authenticationMethod; } /** * Sets the value of the authenticationMethod property. * * @param value * allowed object is * {@link String } * */ public void setAuthenticationMethod(String value) { this.authenticationMethod = value; } }