This project has retired. For details please refer to its Attic page.
GetAuthToken.java

GetAuthToken.java

  1. /*
  2.  * Copyright 2001-2008 The Apache Software Foundation.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  *      http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  *
  16.  */
  17. package org.uddi.api_v2;

  18. import javax.xml.bind.annotation.XmlAccessType;
  19. import javax.xml.bind.annotation.XmlAccessorType;
  20. import javax.xml.bind.annotation.XmlAttribute;
  21. import javax.xml.bind.annotation.XmlType;


  22. /**
  23.  * <p>Java class for get_authToken complex type.
  24.  *
  25.  * <p>The following schema fragment specifies the expected content contained within this class.
  26.  *
  27.  * <pre>
  28.  * &lt;complexType name="get_authToken">
  29.  *   &lt;complexContent>
  30.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  31.  *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  32.  *       &lt;attribute name="userID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  33.  *       &lt;attribute name="cred" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  34.  *     &lt;/restriction>
  35.  *   &lt;/complexContent>
  36.  * &lt;/complexType>
  37.  * </pre>
  38.  *
  39.  *
  40.  */
  41. @XmlAccessorType(XmlAccessType.FIELD)
  42. @XmlType(name = "get_authToken")
  43. public class GetAuthToken {

  44.     @XmlAttribute(name = "generic", required = true)
  45.     protected String generic="2.0";
  46.     @XmlAttribute(name = "userID", required = true)
  47.     protected String userID;
  48.     @XmlAttribute(name = "cred", required = true)
  49.     protected String cred;

  50.     /**
  51.      * Gets the value of the generic property.
  52.      *
  53.      * @return
  54.      *     possible object is
  55.      *     {@link String }
  56.      *    
  57.      */
  58.     public String getGeneric() {
  59.         return generic;
  60.     }

  61.     /**
  62.      * Sets the value of the generic property.
  63.      *
  64.      * @param value
  65.      *     allowed object is
  66.      *     {@link String }
  67.      *    
  68.      */
  69.     public void setGeneric(String value) {
  70.         this.generic = value;
  71.     }

  72.     /**
  73.      * Gets the value of the userID property.
  74.      *
  75.      * @return
  76.      *     possible object is
  77.      *     {@link String }
  78.      *    
  79.      */
  80.     public String getUserID() {
  81.         return userID;
  82.     }

  83.     /**
  84.      * Sets the value of the userID property.
  85.      *
  86.      * @param value
  87.      *     allowed object is
  88.      *     {@link String }
  89.      *    
  90.      */
  91.     public void setUserID(String value) {
  92.         this.userID = value;
  93.     }

  94.     /**
  95.      * Gets the value of the cred property.
  96.      *
  97.      * @return
  98.      *     possible object is
  99.      *     {@link String }
  100.      *    
  101.      */
  102.     public String getCred() {
  103.         return cred;
  104.     }

  105.     /**
  106.      * Sets the value of the cred property.
  107.      *
  108.      * @param value
  109.      *     allowed object is
  110.      *     {@link String }
  111.      *    
  112.      */
  113.     public void setCred(String value) {
  114.         this.cred = value;
  115.     }

  116. }