KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.ejbca.core.protocol.ws.jaxws;
3
4 import java.util.List JavaDoc;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlRootElement;
9 import javax.xml.bind.annotation.XmlType;
10 import org.ejbca.core.protocol.ws.objects.UserDataVOWS;
11
12 @XmlRootElement(name = "findUserResponse", namespace = "http://ws.protocol.core.ejbca.org/")
13 @XmlAccessorType(XmlAccessType.FIELD)
14 @XmlType(name = "findUserResponse", namespace = "http://ws.protocol.core.ejbca.org/")
15 public class FindUserResponse {
16
17     @XmlElement(name = "return", namespace = "")
18     private List JavaDoc<UserDataVOWS> _return;
19
20     /**
21      *
22      * @return
23      * returns List<UserDataVOWS>
24      */

25     public List JavaDoc<UserDataVOWS> get_return() {
26         return this._return;
27     }
28
29     /**
30      *
31      * @param _return
32      * the value for the _return property
33      */

34     public void set_return(List JavaDoc<UserDataVOWS> _return) {
35         this._return = _return;
36     }
37
38 }
39
Popular Tags