This project has retired. For details please refer to its Attic page.
AssertionStatusReport xref
View Javadoc
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  
19  import java.util.ArrayList;
20  import java.util.List;
21  import javax.xml.bind.annotation.XmlAccessType;
22  import javax.xml.bind.annotation.XmlAccessorType;
23  import javax.xml.bind.annotation.XmlAttribute;
24  import javax.xml.bind.annotation.XmlType;
25  
26  
27  /**
28   * <p>Java class for assertionStatusReport complex type.
29   * 
30   * <p>The following schema fragment specifies the expected content contained within this class.
31   * 
32   * <pre>
33   * &lt;complexType name="assertionStatusReport">
34   *   &lt;complexContent>
35   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
36   *       &lt;sequence>
37   *         &lt;element ref="{urn:uddi-org:api_v2}assertionStatusItem" maxOccurs="unbounded" minOccurs="0"/>
38   *       &lt;/sequence>
39   *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
40   *       &lt;attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
41   *     &lt;/restriction>
42   *   &lt;/complexContent>
43   * &lt;/complexType>
44   * </pre>
45   * 
46   * 
47   */
48  @XmlAccessorType(XmlAccessType.FIELD)
49  @XmlType(name = "assertionStatusReport", propOrder = {
50      "assertionStatusItem"
51  })
52  public class AssertionStatusReport {
53  
54      protected List<AssertionStatusItem> assertionStatusItem;
55      @XmlAttribute(name = "generic", required = true)
56      protected String generic;
57      @XmlAttribute(name = "operator", required = true)
58      protected String operator;
59  
60      /**
61       * Gets the value of the assertionStatusItem property.
62       * 
63       * <p>
64       * This accessor method returns a reference to the live list,
65       * not a snapshot. Therefore any modification you make to the
66       * returned list will be present inside the JAXB object.
67       * This is why there is not a <CODE>set</CODE> method for the assertionStatusItem property.
68       * 
69       * <p>
70       * For example, to add a new item, do as follows:
71       * <pre>
72       *    getAssertionStatusItem().add(newItem);
73       * </pre>
74       * 
75       * 
76       * <p>
77       * Objects of the following type(s) are allowed in the list
78       * {@link AssertionStatusItem }
79       * 
80       * 
81       */
82      public List<AssertionStatusItem> getAssertionStatusItem() {
83          if (assertionStatusItem == null) {
84              assertionStatusItem = new ArrayList<AssertionStatusItem>();
85          }
86          return this.assertionStatusItem;
87      }
88  
89      /**
90       * Gets the value of the generic property.
91       * 
92       * @return
93       *     possible object is
94       *     {@link String }
95       *     
96       */
97      public String getGeneric() {
98          return generic;
99      }
100 
101     /**
102      * Sets the value of the generic property.
103      * 
104      * @param value
105      *     allowed object is
106      *     {@link String }
107      *     
108      */
109     public void setGeneric(String value) {
110         this.generic = value;
111     }
112 
113     /**
114      * Gets the value of the operator property.
115      * 
116      * @return
117      *     possible object is
118      *     {@link String }
119      *     
120      */
121     public String getOperator() {
122         return operator;
123     }
124 
125     /**
126      * Sets the value of the operator property.
127      * 
128      * @param value
129      *     allowed object is
130      *     {@link String }
131      *     
132      */
133     public void setOperator(String value) {
134         this.operator = value;
135     }
136 
137 }