📄 pkcs10reqresponse.java
字号:
package org.ejbca.core.protocol.ws.jaxws;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement;import javax.xml.bind.annotation.XmlType;import org.ejbca.core.protocol.ws.objects.Certificate;@XmlRootElement(name = "pkcs10ReqResponse", namespace = "http://ws.protocol.core.ejbca.org/")@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "pkcs10ReqResponse", namespace = "http://ws.protocol.core.ejbca.org/")public class Pkcs10ReqResponse { @XmlElement(name = "return", namespace = "") private Certificate _return; /** * * @return * returns Certificate */ public Certificate get_return() { return this._return; } /** * * @param _return * the value for the _return property */ public void set_return(Certificate _return) { this._return = _return; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -