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

GetAllNodes.java

  1. /*
  2.  * Copyright 2001-2009 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.apache.juddi.api_v3;

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


  21. /**
  22.  * <p>Java class for get_AllNodes complex type.
  23.  *
  24.  * <p>The following schema fragment specifies the expected content contained within this class.
  25.  *
  26.  * <pre>
  27.  * &lt;complexType name="get_AllNodes">
  28.  *   &lt;complexContent>
  29.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  30.  *       &lt;sequence>
  31.  *         &lt;element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  32.  *       &lt;/sequence>
  33.  *     &lt;/restriction>
  34.  *   &lt;/complexContent>
  35.  * &lt;/complexType>
  36.  * </pre>
  37.  *
  38.  *
  39.  */
  40. @XmlAccessorType(XmlAccessType.FIELD)
  41. @XmlType(name = "get_AllNodes", propOrder = {
  42.     "authInfo"
  43. })
  44. public class GetAllNodes {

  45.     protected String authInfo;

  46.     /**
  47.      * Gets the value of the authInfo property.
  48.      *
  49.      * @return
  50.      *     possible object is
  51.      *     {@link String }
  52.      *    
  53.      */
  54.     public String getAuthInfo() {
  55.         return authInfo;
  56.     }

  57.     /**
  58.      * Sets the value of the authInfo property.
  59.      *
  60.      * @param value
  61.      *     allowed object is
  62.      *     {@link String }
  63.      *    
  64.      */
  65.     public void setAuthInfo(String value) {
  66.         this.authInfo = value;
  67.     }

  68. }