📄 dynamicaccesspermission.java
字号:
/* * @(#)DynamicAccessPermission.java 1.1 05/08/26 * * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.impl.presentation.rmi;import java.security.*;/** * This class controls the use of dynamic proxies. * A DynamicAccessPermission contains a name (also referred to as a "target name") but * no actions list; you either have the named permission * or you don't. * * @version 1.1 05/08/26 */public final class DynamicAccessPermission extends BasicPermission { //private static final long serialVersionUID = -8343910153355041693L; /** * Creates a new DynamicAccessPermission with the specified name. * @param name the name of the DynamicAccessPermission. */ public DynamicAccessPermission(String name) { super(name); } /** * Creates a new DynamicAccessPermission object with the specified name. * The name is the symbolic name of the DynamicAccessPermission, and the * actions String is currently unused and should be null. * * @param name the name of the DynamicAccessPermission. * @param actions should be null. */ public DynamicAccessPermission(String name, String actions) { super(name, actions); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -