KickJava   Java API By Example, From Geeks To Geeks.

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


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 editUser complex type.
11  *
12  * <p>The following schema fragment specifies the expected content contained within this class.
13  *
14  * <pre>
15  * &lt;complexType name="editUser">
16  * &lt;complexContent>
17  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18  * &lt;sequence>
19  * &lt;element name="arg0" type="{http://ws.protocol.core.ejbca.org/}userDataVOWS" 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 = "editUser", propOrder = {
30     "arg0"
31 })
32 public class EditUser {
33
34     protected UserDataVOWS arg0;
35
36     /**
37      * Gets the value of the arg0 property.
38      *
39      * @return
40      * possible object is
41      * {@link UserDataVOWS }
42      *
43      */

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

56     public void setArg0(UserDataVOWS value) {
57         this.arg0 = value;
58     }
59
60 }
61
Popular Tags