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

📄 siprouterpermission.java

📁 First of all, the Applet-phone is a SIP User-Agent with audio and text messaging capabilities. But
💻 JAVA
字号:
/* * SipRouterPermission.java * * Created on September 23, 2003, 2:37 PM */package gov.nist.security.permissions;/** * Permission specific to the sip protocol * checking if the service is allowed to used his own router class * @author  DERUELLE Jean */public class SipRouterPermission extends java.security.BasicPermission {        /** Creates a new instance of SipRouterPermission      * @param name - name of the permission          */    public SipRouterPermission(String name) {        this(name,"allowed");    }        /** Creates a new instance of SipRouterPermission      * @param name - name of the permission          * @param actions - the actions of the permission     */    public SipRouterPermission(String name,String actions) {        super(name,actions);    }}

⌨️ 快捷键说明

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