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

TModelBag.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.XmlElement;
  23. import javax.xml.bind.annotation.XmlType;


  24. /**
  25.  * <p>Java class for tModelBag complex type.
  26.  *
  27.  * <p>The following schema fragment specifies the expected content contained within this class.
  28.  *
  29.  * <pre>
  30.  * &lt;complexType name="tModelBag">
  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}tModelKey" maxOccurs="unbounded"/>
  35.  *       &lt;/sequence>
  36.  *     &lt;/restriction>
  37.  *   &lt;/complexContent>
  38.  * &lt;/complexType>
  39.  * </pre>
  40.  *
  41.  *
  42.  */
  43. @XmlAccessorType(XmlAccessType.FIELD)
  44. @XmlType(name = "tModelBag", propOrder = {
  45.     "tModelKey"
  46. })
  47. public class TModelBag {

  48.     @XmlElement(required = true)
  49.     protected List<String> tModelKey;

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

  78. }