📄 authorizationdeniedexceptionbean.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.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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -