edituser.java

来自「一个免费的CA,基于EJB平台的,老师叫我们测试,现把之共享出来让大家参考」· Java 代码 · 共 61 行

JAVA
61
字号
package org.ejbca.core.protocol.ws.client.gen;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlType;/** * <p>Java class for editUser complex type. *  * <p>The following schema fragment specifies the expected content contained within this class. *  * <pre> * &lt;complexType name="editUser"> *   &lt;complexContent> *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> *       &lt;sequence> *         &lt;element name="arg0" type="{http://ws.protocol.core.ejbca.org/}userDataVOWS" minOccurs="0"/> *       &lt;/sequence> *     &lt;/restriction> *   &lt;/complexContent> * &lt;/complexType> * </pre> *  *  */@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "editUser", propOrder = {    "arg0"})public class EditUser {    protected UserDataVOWS arg0;    /**     * Gets the value of the arg0 property.     *      * @return     *     possible object is     *     {@link UserDataVOWS }     *          */    public UserDataVOWS getArg0() {        return arg0;    }    /**     * Sets the value of the arg0 property.     *      * @param value     *     allowed object is     *     {@link UserDataVOWS }     *          */    public void setArg0(UserDataVOWS value) {        this.arg0 = value;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?