⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userdatavows.java

📁 一个免费的CA,基于EJB平台的,老师叫我们测试,现把之共享出来让大家参考
💻 JAVA
字号:
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 userDataVOWS complex type. *  * <p>The following schema fragment specifies the expected content contained within this class. *  * <pre> * &lt;complexType name="userDataVOWS"> *   &lt;complexContent> *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> *       &lt;sequence> *         &lt;element name="caName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="certificateProfileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="clearPwd" type="{http://www.w3.org/2001/XMLSchema}boolean"/> *         &lt;element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="endEntityProfileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="hardTokenIssuerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="keyRecoverable" type="{http://www.w3.org/2001/XMLSchema}boolean"/> *         &lt;element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="sendNotification" type="{http://www.w3.org/2001/XMLSchema}boolean"/> *         &lt;element name="status" type="{http://www.w3.org/2001/XMLSchema}int"/> *         &lt;element name="subjectAltName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="subjectDN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="tokenType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *         &lt;element name="username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> *       &lt;/sequence> *     &lt;/restriction> *   &lt;/complexContent> * &lt;/complexType> * </pre> *  *  */@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "userDataVOWS", propOrder = {    "caName",    "certificateProfileName",    "clearPwd",    "email",    "endEntityProfileName",    "hardTokenIssuerName",    "keyRecoverable",    "password",    "sendNotification",    "status",    "subjectAltName",    "subjectDN",    "tokenType",    "username"})public class UserDataVOWS {    protected String caName;    protected String certificateProfileName;    protected boolean clearPwd;    protected String email;    protected String endEntityProfileName;    protected String hardTokenIssuerName;    protected boolean keyRecoverable;    protected String password;    protected boolean sendNotification;    protected int status;    protected String subjectAltName;    protected String subjectDN;    protected String tokenType;    protected String username;    /**     * Gets the value of the caName property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getCaName() {        return caName;    }    /**     * Sets the value of the caName property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setCaName(String value) {        this.caName = value;    }    /**     * Gets the value of the certificateProfileName property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getCertificateProfileName() {        return certificateProfileName;    }    /**     * Sets the value of the certificateProfileName property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setCertificateProfileName(String value) {        this.certificateProfileName = value;    }    /**     * Gets the value of the clearPwd property.     *      */    public boolean isClearPwd() {        return clearPwd;    }    /**     * Sets the value of the clearPwd property.     *      */    public void setClearPwd(boolean value) {        this.clearPwd = value;    }    /**     * Gets the value of the email property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getEmail() {        return email;    }    /**     * Sets the value of the email property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setEmail(String value) {        this.email = value;    }    /**     * Gets the value of the endEntityProfileName property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getEndEntityProfileName() {        return endEntityProfileName;    }    /**     * Sets the value of the endEntityProfileName property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setEndEntityProfileName(String value) {        this.endEntityProfileName = value;    }    /**     * Gets the value of the hardTokenIssuerName property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getHardTokenIssuerName() {        return hardTokenIssuerName;    }    /**     * Sets the value of the hardTokenIssuerName property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setHardTokenIssuerName(String value) {        this.hardTokenIssuerName = value;    }    /**     * Gets the value of the keyRecoverable property.     *      */    public boolean isKeyRecoverable() {        return keyRecoverable;    }    /**     * Sets the value of the keyRecoverable property.     *      */    public void setKeyRecoverable(boolean value) {        this.keyRecoverable = value;    }    /**     * Gets the value of the password property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getPassword() {        return password;    }    /**     * Sets the value of the password property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setPassword(String value) {        this.password = value;    }    /**     * Gets the value of the sendNotification property.     *      */    public boolean isSendNotification() {        return sendNotification;    }    /**     * Sets the value of the sendNotification property.     *      */    public void setSendNotification(boolean value) {        this.sendNotification = value;    }    /**     * Gets the value of the status property.     *      */    public int getStatus() {        return status;    }    /**     * Sets the value of the status property.     *      */    public void setStatus(int value) {        this.status = value;    }    /**     * Gets the value of the subjectAltName property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getSubjectAltName() {        return subjectAltName;    }    /**     * Sets the value of the subjectAltName property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setSubjectAltName(String value) {        this.subjectAltName = value;    }    /**     * Gets the value of the subjectDN property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getSubjectDN() {        return subjectDN;    }    /**     * Sets the value of the subjectDN property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setSubjectDN(String value) {        this.subjectDN = value;    }    /**     * Gets the value of the tokenType property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getTokenType() {        return tokenType;    }    /**     * Sets the value of the tokenType property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setTokenType(String value) {        this.tokenType = value;    }    /**     * Gets the value of the username property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getUsername() {        return username;    }    /**     * Sets the value of the username property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setUsername(String value) {        this.username = value;    }}

⌨️ 快捷键说明

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