1 /**
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 *
6 * If it is not possible or desirable to put the notice in a particular
7 * file, then You may include the notice in a location (such as a LICENSE
8 * file in a relevant directory) where a recipient would be likely to look
9 * for such a notice.
10
11 *
12 */
13
14 /* ---------------------------------------------------------------------------
15 * U.S. Government, Department of the Army
16 * Army Materiel Command
17 * Research Development Engineering Command
18 * Communications Electronics Research Development and Engineering Center
19 * ---------------------------------------------------------------------------
20 */
21
22 package org.oasis_open.docs.wsdm.mows_2;
23
24 import java.util.ArrayList;
25 import java.util.List;
26 import javax.xml.bind.annotation.XmlAccessType;
27 import javax.xml.bind.annotation.XmlAccessorType;
28 import javax.xml.bind.annotation.XmlElement;
29 import javax.xml.bind.annotation.XmlRootElement;
30 import javax.xml.bind.annotation.XmlType;
31 import javax.xml.ws.wsaddressing.W3CEndpointReference;
32
33
34 /**
35 * <p>Java class for anonymous complex type.
36 *
37 * <p>The following schema fragment specifies the expected content contained within this class.
38 *
39 * <pre>
40 * <complexType>
41 * <complexContent>
42 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
43 * <sequence>
44 * <element ref="{http://docs.oasis-open.org/wsdm/muws1-2.xsd}ManageabilityEndpointReference" maxOccurs="unbounded"/>
45 * </sequence>
46 * </restriction>
47 * </complexContent>
48 * </complexType>
49 * </pre>
50 *
51 *
52 */
53 @XmlAccessorType(XmlAccessType.FIELD)
54 @XmlType(name = "", propOrder = {
55 "manageabilityEndpointReference"
56 })
57 @XmlRootElement(name = "GetManageabilityReferencesResponse")
58 public class GetManageabilityReferencesResponse {
59
60 @XmlElement(name = "ManageabilityEndpointReference", namespace = "http://docs.oasis-open.org/wsdm/muws1-2.xsd", required = true)
61 protected List<W3CEndpointReference> manageabilityEndpointReference;
62
63 /**
64 * Gets the value of the manageabilityEndpointReference property.
65 *
66 * <p>
67 * This accessor method returns a reference to the live list,
68 * not a snapshot. Therefore any modification you make to the
69 * returned list will be present inside the JAXB object.
70 * This is why there is not a <CODE>set</CODE> method for the manageabilityEndpointReference property.
71 *
72 * <p>
73 * For example, to add a new item, do as follows:
74 * <pre>
75 * getManageabilityEndpointReference().add(newItem);
76 * </pre>
77 *
78 *
79 * <p>
80 * Objects of the following type(s) are allowed in the list
81 * {@link W3CEndpointReference }
82 *
83 *
84 */
85 public List<W3CEndpointReference> getManageabilityEndpointReference() {
86 if (manageabilityEndpointReference == null) {
87 manageabilityEndpointReference = new ArrayList<W3CEndpointReference>();
88 }
89 return this.manageabilityEndpointReference;
90 }
91
92 }