📄 statelessbehavior.java
字号:
/* * StatelessBehavior.java * * Created on September 25, 2003, 9:42 AM */package gov.nist.security.permissions;/** * Permission checking if the right to do stateless calls is granted * @author DERUELLE Jean */public class StatelessBehavior extends java.security.BasicPermission { /** Creates a new instance of StatelessBehavior * @param name - name of the permission */ public StatelessBehavior(String name) { this(name,"allowed"); } /** Creates a new instance of StatelessBehavior * @param name - name of the permission * @param actions - the actions of the permission */ public StatelessBehavior(String name, String actions) { super(name,actions); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -