View Javadoc
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  package org.oasis_open.docs.wsrf.rp_2;
22  
23  import javax.xml.bind.annotation.XmlAccessType;
24  import javax.xml.bind.annotation.XmlAccessorType;
25  import javax.xml.bind.annotation.XmlElement;
26  import javax.xml.bind.annotation.XmlRootElement;
27  import javax.xml.bind.annotation.XmlType;
28  
29  
30  /**
31   * <p>Java class for anonymous complex type.
32   * 
33   * <p>The following schema fragment specifies the expected content contained within this class.
34   * 
35   * <pre>
36   * &lt;complexType>
37   *   &lt;complexContent>
38   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39   *       &lt;sequence>
40   *         &lt;element ref="{http://docs.oasis-open.org/wsrf/rp-2}Update"/>
41   *       &lt;/sequence>
42   *     &lt;/restriction>
43   *   &lt;/complexContent>
44   * &lt;/complexType>
45   * </pre>
46   * 
47   * 
48   */
49  @XmlAccessorType(XmlAccessType.FIELD)
50  @XmlType(name = "", propOrder = {
51      "update"
52  })
53  @XmlRootElement(name = "UpdateResourceProperties")
54  public class UpdateResourceProperties {
55  
56      @XmlElement(name = "Update", required = true)
57      protected UpdateType update;
58  
59      /**
60       * Gets the value of the update property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link UpdateType }
65       *     
66       */
67      public UpdateType getUpdate() {
68          return update;
69      }
70  
71      /**
72       * Sets the value of the update property.
73       * 
74       * @param value
75       *     allowed object is
76       *     {@link UpdateType }
77       *     
78       */
79      public void setUpdate(UpdateType value) {
80          this.update = value;
81      }
82  
83  }