authorizationdeniedexceptionbean.java

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

JAVA
42
字号
package org.ejbca.core.protocol.ws.jaxws;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlRootElement;import javax.xml.bind.annotation.XmlType;/** * This class was generated by the JAXWS SI. * JAX-WS RI 2.0_01-b59-fcs * Generated source version: 2.0_01 *  */@XmlRootElement(name = "AuthorizationDeniedException", namespace = "http://ws.protocol.core.ejbca.org/")@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "AuthorizationDeniedException", namespace = "http://ws.protocol.core.ejbca.org/")public class AuthorizationDeniedExceptionBean {    private String message;    /**     *      * @return     *     returns String     */    public String getMessage() {        return this.message;    }    /**     *      * @param message     *     the value for the message property     */    public void setMessage(String message) {        this.message = message;    }}

⌨️ 快捷键说明

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