package org.cagrid.gaards.authentication.authenticationservice; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="credential"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://gaards.cagrid.org/authentication}Credential"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "credential" }) @XmlRootElement(name = "AuthenticateUserRequest") public class AuthenticateUserRequest implements Serializable { @XmlElement(required = true) protected AuthenticateUserRequest.Credential credential; /** * Gets the value of the credential property. * * @return * possible object is * {@link AuthenticateUserRequest.Credential } * */ public AuthenticateUserRequest.Credential getCredential() { return credential; } /** * Sets the value of the credential property. * * @param value * allowed object is * {@link AuthenticateUserRequest.Credential } * */ public void setCredential(AuthenticateUserRequest.Credential value) { this.credential = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://gaards.cagrid.org/authentication}Credential"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "credential" }) public static class Credential implements Serializable { @XmlElement(name = "Credential", namespace = "http://gaards.cagrid.org/authentication", required = true) protected org.cagrid.gaards.authentication.Credential credential; /** * Gets the value of the credential property. * * @return * possible object is * {@link org.cagrid.gaards.authentication.Credential } * */ public org.cagrid.gaards.authentication.Credential getCredential() { return credential; } /** * Sets the value of the credential property. * * @param value * allowed object is * {@link org.cagrid.gaards.authentication.Credential } * */ public void setCredential(org.cagrid.gaards.authentication.Credential value) { this.credential = value; } } }