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

ServiceInfo.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 java.util.ArrayList;
  19. import java.util.List;
  20. import javax.xml.bind.annotation.XmlAccessType;
  21. import javax.xml.bind.annotation.XmlAccessorType;
  22. import javax.xml.bind.annotation.XmlAttribute;
  23. import javax.xml.bind.annotation.XmlType;


  24. /**
  25.  * <p>Java class for serviceInfo complex type.
  26.  *
  27.  * <p>The following schema fragment specifies the expected content contained within this class.
  28.  *
  29.  * <pre>
  30.  * &lt;complexType name="serviceInfo">
  31.  *   &lt;complexContent>
  32.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  33.  *       &lt;sequence>
  34.  *         &lt;element ref="{urn:uddi-org:api_v2}name" maxOccurs="unbounded" minOccurs="0"/>
  35.  *       &lt;/sequence>
  36.  *       &lt;attribute name="serviceKey" use="required" type="{urn:uddi-org:api_v2}serviceKey" />
  37.  *       &lt;attribute name="businessKey" use="required" type="{urn:uddi-org:api_v2}businessKey" />
  38.  *     &lt;/restriction>
  39.  *   &lt;/complexContent>
  40.  * &lt;/complexType>
  41.  * </pre>
  42.  *
  43.  *
  44.  */
  45. @XmlAccessorType(XmlAccessType.FIELD)
  46. @XmlType(name = "serviceInfo", propOrder = {
  47.     "name"
  48. })
  49. public class ServiceInfo {

  50.     protected List<Name> name;
  51.     @XmlAttribute(name = "serviceKey", required = true)
  52.     protected String serviceKey;
  53.     @XmlAttribute(name = "businessKey", required = true)
  54.     protected String businessKey;

  55.     /**
  56.      * Gets the value of the name property.
  57.      *
  58.      * <p>
  59.      * This accessor method returns a reference to the live list,
  60.      * not a snapshot. Therefore any modification you make to the
  61.      * returned list will be present inside the JAXB object.
  62.      * This is why there is not a <CODE>set</CODE> method for the name property.
  63.      *
  64.      * <p>
  65.      * For example, to add a new item, do as follows:
  66.      * <pre>
  67.      *    getName().add(newItem);
  68.      * </pre>
  69.      *
  70.      *
  71.      * <p>
  72.      * Objects of the following type(s) are allowed in the list
  73.      * {@link Name }
  74.      *
  75.      *
  76.      */
  77.     public List<Name> getName() {
  78.         if (name == null) {
  79.             name = new ArrayList<Name>();
  80.         }
  81.         return this.name;
  82.     }

  83.     /**
  84.      * Gets the value of the serviceKey property.
  85.      *
  86.      * @return
  87.      *     possible object is
  88.      *     {@link String }
  89.      *    
  90.      */
  91.     public String getServiceKey() {
  92.         return serviceKey;
  93.     }

  94.     /**
  95.      * Sets the value of the serviceKey property.
  96.      *
  97.      * @param value
  98.      *     allowed object is
  99.      *     {@link String }
  100.      *    
  101.      */
  102.     public void setServiceKey(String value) {
  103.         this.serviceKey = value;
  104.     }

  105.     /**
  106.      * Gets the value of the businessKey property.
  107.      *
  108.      * @return
  109.      *     possible object is
  110.      *     {@link String }
  111.      *    
  112.      */
  113.     public String getBusinessKey() {
  114.         return businessKey;
  115.     }

  116.     /**
  117.      * Sets the value of the businessKey property.
  118.      *
  119.      * @param value
  120.      *     allowed object is
  121.      *     {@link String }
  122.      *    
  123.      */
  124.     public void setBusinessKey(String value) {
  125.         this.businessKey = value;
  126.     }

  127. }