KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > protocol > ws > jaxws > AuthorizationDeniedExceptionBean


1
2 package org.ejbca.core.protocol.ws.jaxws;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlRootElement;
7 import javax.xml.bind.annotation.XmlType;
8
9
10 /**
11  * This class was generated by the JAXWS SI.
12  * JAX-WS RI 2.0_01-b59-fcs
13  * Generated source version: 2.0_01
14  *
15  */

16 @XmlRootElement(name = "AuthorizationDeniedException", namespace = "http://ws.protocol.core.ejbca.org/")
17 @XmlAccessorType(XmlAccessType.FIELD)
18 @XmlType(name = "AuthorizationDeniedException", namespace = "http://ws.protocol.core.ejbca.org/")
19 public class AuthorizationDeniedExceptionBean {
20
21     private String JavaDoc message;
22
23     /**
24      *
25      * @return
26      * returns String
27      */

28     public String JavaDoc getMessage() {
29         return this.message;
30     }
31
32     /**
33      *
34      * @param message
35      * the value for the message property
36      */

37     public void setMessage(String JavaDoc message) {
38         this.message = message;
39     }
40
41 }
42
Popular Tags