dynamicaccesspermission.java
来自「JAVA 所有包」· Java 代码 · 共 46 行
JAVA
46 行
/* * @(#)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 + =
减小字号Ctrl + -
显示快捷键?