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
18
19 package org.uddi.api_v3;
20
21 import java.io.Serializable;
22 import java.util.ArrayList;
23 import java.util.List;
24 import javax.xml.bind.annotation.XmlAccessType;
25 import javax.xml.bind.annotation.XmlAccessorType;
26 import javax.xml.bind.annotation.XmlAttribute;
27 import javax.xml.bind.annotation.XmlTransient;
28 import javax.xml.bind.annotation.XmlType;
29
30
31 /**
32 * <p>Java class for keyedReferenceGroup complex type.
33 *
34 * <p>The following schema fragment specifies the expected content contained within this class.
35 *
36 * <pre>
37 * <complexType name="keyedReferenceGroup">
38 * <complexContent>
39 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40 * <sequence>
41 * <element ref="{urn:uddi-org:api_v3}keyedReference" maxOccurs="unbounded" minOccurs="0"/>
42 * </sequence>
43 * <attribute name="tModelKey" use="required" type="{urn:uddi-org:api_v3}tModelKey" />
44 * </restriction>
45 * </complexContent>
46 * </complexType>
47 * </pre>
48 *
49 *
50 */
51 @XmlAccessorType(XmlAccessType.FIELD)
52 @XmlType(name = "keyedReferenceGroup", propOrder = {
53 "keyedReference"
54 })
55 public class KeyedReferenceGroup implements Serializable{
56 @XmlTransient
57 private static final long serialVersionUID = -2001599970824282657L;
58 protected List<KeyedReference> keyedReference;
59 @XmlAttribute(required = true)
60 protected String tModelKey;
61
62 /**
63 * Gets the value of the keyedReference property.
64 *
65 * <p>
66 * This accessor method returns a reference to the live list,
67 * not a snapshot. Therefore any modification you make to the
68 * returned list will be present inside the JAXB object.
69 * This is why there is not a <CODE>set</CODE> method for the keyedReference property.
70 *
71 * <p>
72 * For example, to add a new item, do as follows:
73 * <pre>
74 * getKeyedReference().add(newItem);
75 * </pre>
76 *
77 *
78 * <p>
79 * Objects of the following type(s) are allowed in the list
80 * {@link KeyedReference }
81 *
82 *
83 */
84 public List<KeyedReference> getKeyedReference() {
85 if (keyedReference == null) {
86 keyedReference = new ArrayList<KeyedReference>();
87 }
88 return this.keyedReference;
89 }
90
91 /**
92 * Gets the value of the tModelKey property.
93 *
94 * @return
95 * possible object is
96 * {@link String }
97 *
98 */
99 public String getTModelKey() {
100 return tModelKey;
101 }
102
103 /**
104 * Sets the value of the tModelKey property.
105 *
106 * @param value
107 * allowed object is
108 * {@link String }
109 *
110 */
111 public void setTModelKey(String value) {
112 this.tModelKey = value;
113 }
114
115 }