KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > protocol > ws > client > gen > UserDoesntFullfillEndEntityProfile


1
2 package org.ejbca.core.protocol.ws.client.gen;
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 UserDoesntFullfillEndEntityProfile complex type.
11  *
12  * <p>The following schema fragment specifies the expected content contained within this class.
13  *
14  * <pre>
15  * &lt;complexType name="UserDoesntFullfillEndEntityProfile">
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  *
27  */

28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "UserDoesntFullfillEndEntityProfile", propOrder = {
30     "message"
31 })
32 public class UserDoesntFullfillEndEntityProfile {
33
34     protected String JavaDoc message;
35
36     /**
37      * Gets the value of the message property.
38      *
39      * @return
40      * possible object is
41      * {@link String }
42      *
43      */

44     public String JavaDoc getMessage() {
45         return message;
46     }
47
48     /**
49      * Sets the value of the message property.
50      *
51      * @param value
52      * allowed object is
53      * {@link String }
54      *
55      */

56     public void setMessage(String JavaDoc value) {
57         this.message = value;
58     }
59
60 }
61
Popular Tags