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

📄 findcertsresponse.java

📁 一个免费的CA,基于EJB平台的,老师叫我们测试,现把之共享出来让大家参考
💻 JAVA
字号:
package org.ejbca.core.protocol.ws.jaxws;import java.util.List;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 = "findCertsResponse", namespace = "http://ws.protocol.core.ejbca.org/")@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "findCertsResponse", namespace = "http://ws.protocol.core.ejbca.org/")public class FindCertsResponse {    @XmlElement(name = "return", namespace = "")    private List<Certificate> _return;    /**     *      * @return     *     returns List<Certificate>     */    public List<Certificate> get_return() {        return this._return;    }    /**     *      * @param _return     *     the value for the _return property     */    public void set_return(List<Certificate> _return) {        this._return = _return;    }}

⌨️ 快捷键说明

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