sipsocketpermission.java
来自「First of all, the Applet-phone is a SIP 」· Java 代码 · 共 33 行
JAVA
33 行
/* * SocketPermission.java * * Created on August 1, 2003, 10:13 AM */package gov.nist.security.permissions;/** * Permission specific to the sip protocol * checking the same thing than the java.net.SockectPermision * @author DERUELLE Jean */public class SipSocketPermission extends java.security.BasicPermission { /** Creates a new instance of SipSocketPermission * @param name - name of the permission */ public SipSocketPermission(String name) { super(name); } /** Creates a new instance of SipSocketPermission * @param name - name of the permission * @param actions - the actions of the permission */ public SipSocketPermission(String name, String actions) { super(name, actions); } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?