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.policy_v3_instanceparms;
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.XmlAnyElement;
27 import javax.xml.bind.annotation.XmlTransient;
28 import javax.xml.bind.annotation.XmlType;
29 import org.w3c.dom.Element;
30
31
32 /**
33 * <p>Java class for UDDIinstanceParmsContainer_type complex type.
34 *
35 * <p>The following schema fragment specifies the expected content contained within this class.
36 *
37 * <pre>
38 * <complexType name="UDDIinstanceParmsContainer_type">
39 * <complexContent>
40 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
41 * <sequence>
42 * <any/>
43 * </sequence>
44 * </restriction>
45 * </complexContent>
46 * </complexType>
47 * </pre>
48 *
49 *
50 */
51 @XmlAccessorType(XmlAccessType.FIELD)
52 @XmlType(name = "UDDIinstanceParmsContainer_type", propOrder = {
53 "any"
54 })
55 public class UDDIinstanceParmsContainerType implements Serializable{
56 @XmlTransient
57 private static final long serialVersionUID = 6751400167361052618L;
58 @XmlAnyElement(lax = true)
59 protected List<Object> any;
60
61 /**
62 * Gets the value of the any property.
63 *
64 * <p>
65 * This accessor method returns a reference to the live list,
66 * not a snapshot. Therefore any modification you make to the
67 * returned list will be present inside the JAXB object.
68 * This is why there is not a <CODE>set</CODE> method for the any property.
69 *
70 * <p>
71 * For example, to add a new item, do as follows:
72 * <pre>
73 * getAny().add(newItem);
74 * </pre>
75 *
76 *
77 * <p>
78 * Objects of the following type(s) are allowed in the list
79 * {@link Object }
80 * {@link Element }
81 *
82 *
83 */
84 public List<Object> getAny() {
85 if (any == null) {
86 any = new ArrayList<Object>();
87 }
88 return this.any;
89 }
90
91 }