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