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

DiscoveryURL.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. import javax.xml.bind.annotation.XmlValue;


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

  45.     @XmlValue
  46.     protected String value;
  47.     @XmlAttribute(name = "useType", required = true)
  48.     protected String useType;

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

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

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

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

  93. }