All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.upcex.xolt.ups.accessrequest.jaxb.AccessRequest Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.27 at 05:13:48 PM EST 
//


package com.upcex.xolt.ups.accessrequest.jaxb;

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;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AccessLicenseNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="UserId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Password" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "accessLicenseNumber", "userId", "password" }) @XmlRootElement(name = "AccessRequest") public class AccessRequest { @XmlElement(name = "AccessLicenseNumber", required = true) protected String accessLicenseNumber; @XmlElement(name = "UserId", required = true) protected String userId; @XmlElement(name = "Password", required = true) protected String password; /** * Gets the value of the accessLicenseNumber property. * * @return * possible object is * {@link String } * */ public String getAccessLicenseNumber() { return accessLicenseNumber; } /** * Sets the value of the accessLicenseNumber property. * * @param value * allowed object is * {@link String } * */ public void setAccessLicenseNumber(String value) { this.accessLicenseNumber = value; } /** * Gets the value of the userId property. * * @return * possible object is * {@link String } * */ public String getUserId() { return userId; } /** * Sets the value of the userId property. * * @param value * allowed object is * {@link String } * */ public void setUserId(String value) { this.userId = value; } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy