View Javadoc

1   
2   package org.kuali.ole.select.testing;
3   
4   import javax.xml.bind.annotation.XmlAccessType;
5   import javax.xml.bind.annotation.XmlAccessorType;
6   import javax.xml.bind.annotation.XmlType;
7   
8   
9   /**
10   * <p>Java class for Exception complex type.
11   * <p/>
12   * <p>The following schema fragment specifies the expected content contained within this class.
13   * <p/>
14   * <pre>
15   * &lt;complexType name="Exception">
16   *   &lt;complexContent>
17   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18   *       &lt;sequence>
19   *         &lt;element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20   *       &lt;/sequence>
21   *     &lt;/restriction>
22   *   &lt;/complexContent>
23   * &lt;/complexType>
24   * </pre>
25   */
26  @XmlAccessorType(XmlAccessType.FIELD)
27  @XmlType(name = "Exception", propOrder = {
28          "message"
29  })
30  public class WSException {
31  
32      protected String message;
33  
34      /**
35       * Gets the value of the message property.
36       *
37       * @return possible object is
38       *         {@link String }
39       */
40      public String getMessage() {
41          return message;
42      }
43  
44      /**
45       * Sets the value of the message property.
46       *
47       * @param value allowed object is
48       *              {@link String }
49       */
50      public void setMessage(String value) {
51          this.message = value;
52      }
53  
54  }