KickJava   Java API By Example, From Geeks To Geeks.

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


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.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 import org.ejbca.core.protocol.ws.objects.UserMatch;
10
11 @XmlRootElement(name = "findUser", namespace = "http://ws.protocol.core.ejbca.org/")
12 @XmlAccessorType(XmlAccessType.FIELD)
13 @XmlType(name = "findUser", namespace = "http://ws.protocol.core.ejbca.org/")
14 public class FindUser {
15
16     @XmlElement(name = "arg0", namespace = "")
17     private UserMatch arg0;
18
19     /**
20      *
21      * @return
22      * returns UserMatch
23      */

24     public UserMatch getArg0() {
25         return this.arg0;
26     }
27
28     /**
29      *
30      * @param arg0
31      * the value for the arg0 property
32      */

33     public void setArg0(UserMatch arg0) {
34         this.arg0 = arg0;
35     }
36
37 }
38
Popular Tags