revokestatus.java
来自「一个免费的CA,基于EJB平台的,老师叫我们测试,现把之共享出来让大家参考」· Java 代码 · 共 135 行
JAVA
135 行
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;import javax.xml.datatype.XMLGregorianCalendar;/** * <p>Java class for revokeStatus complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="revokeStatus"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="certificateSN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="issuerDN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="reason" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="revocationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "revokeStatus", propOrder = { "certificateSN", "issuerDN", "reason", "revocationDate"})public class RevokeStatus { protected String certificateSN; protected String issuerDN; protected int reason; protected XMLGregorianCalendar revocationDate; /** * Gets the value of the certificateSN property. * * @return * possible object is * {@link String } * */ public String getCertificateSN() { return certificateSN; } /** * Sets the value of the certificateSN property. * * @param value * allowed object is * {@link String } * */ public void setCertificateSN(String value) { this.certificateSN = value; } /** * Gets the value of the issuerDN property. * * @return * possible object is * {@link String } * */ public String getIssuerDN() { return issuerDN; } /** * Sets the value of the issuerDN property. * * @param value * allowed object is * {@link String } * */ public void setIssuerDN(String value) { this.issuerDN = value; } /** * Gets the value of the reason property. * */ public int getReason() { return reason; } /** * Sets the value of the reason property. * */ public void setReason(int value) { this.reason = value; } /** * Gets the value of the revocationDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getRevocationDate() { return revocationDate; } /** * Sets the value of the revocationDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setRevocationDate(XMLGregorianCalendar value) { this.revocationDate = value; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?