KickJava   Java API By Example, From Geeks To Geeks.

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


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.XmlElement;
7 import javax.xml.bind.annotation.XmlType;
8
9
10 /**
11  * <p>Java class for pkcs10ReqResponse complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="pkcs10ReqResponse">
17  * &lt;complexContent>
18  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19  * &lt;sequence>
20  * &lt;element name="return" type="{http://ws.protocol.core.ejbca.org/}certificate" minOccurs="0"/>
21  * &lt;/sequence>
22  * &lt;/restriction>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  *
28  */

29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "pkcs10ReqResponse", propOrder = {
31     "_return"
32 })
33 public class Pkcs10ReqResponse {
34
35     @XmlElement(name = "return")
36     protected Certificate _return;
37
38     /**
39      * Gets the value of the return property.
40      *
41      * @return
42      * possible object is
43      * {@link Certificate }
44      *
45      */

46     public Certificate getReturn() {
47         return _return;
48     }
49
50     /**
51      * Sets the value of the return property.
52      *
53      * @param value
54      * allowed object is
55      * {@link Certificate }
56      *
57      */

58     public void setReturn(Certificate value) {
59         this._return = value;
60     }
61
62 }
63
Popular Tags