[/url] [url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview
Class
JavaTM 2 Platform
Std. Ed. v1.4.2
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
java.security
Class AllPermissionjava.lang.Object
java.security.Permission
java.security.AllPermission
All Implemented Interfaces: Guard, Serializable public final class AllPermission extends PermissionThe AllPermission is a permission that implies all other permissions. AllPermission是个包含所有其他许可的许可。
Note: Granting AllPermission should be done with extreme care, as it implies all other permissions. Thus, it grants code the ability to run with security disabled. Extreme caution should be taken before granting such a permission to code. This permission should be used only during testing, or in extremely rare cases where an application or applet is completely trusted and adding the necessary permissions to the policy is prohibitively cumbersome. 注意:授予AllPermission应当极为小心,因为它包含了所有其它许可。因此,它授予运行代码的权力, 而无需安全检查。该许可应当只在测试时使用,或者在极少数的情况下,应用或applet完全被信任, 向策略中添加必要的许可会使代码笨拙。
See Also: Permission, AccessController, Permissions, PermissionCollection, SecurityManagerConstructor Summary
Creates a new AllPermission object. 创建一个AllPermission对象。
AllPermission(String name, String actions)
Creates a new AllPermission object. 创建一个AllPermission对象。
Method Summary
boolean
Checks two AllPermission objects for equality. 检查两个AllPermission对象是否相等。
Returns the canonical string representation of the actions. 返回表示动作的规范字符串。
int
hashCode()
Returns the hash code value for this object. 返回该对象的哈希码值。
boolean
Checks if the specified permission is "implied" by this object. 检查该对象是否包含指定的许可。
Returns a new PermissionCollection object for storing AllPermission objects. 返回一个PermissionCollection对象,用于存储AllPermission对象。
Methods inherited from class java.security.Permission
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Constructor Detail
AllPermissionpublic AllPermission()
Creates a new AllPermission object. 创建一个AllPermission对象。
AllPermissionpublic AllPermission(String name,
String actions)
Creates a new AllPermission object. This constructor exists for use by the Policy object to instantiate new Permission objects. 创建一个AllPermission对象。存在该构造函数是因为Policy对象要用来实例化新的Permission对象。
Parameters: name - ignored 被忽略 actions - ignored. 被忽略。Method Detail
impliespublic boolean implies(Permission p)
Checks if the specified permission is "implied" by this object. This method always returns true. 检查该对象是否包含指定的许可。方法总是返回true。
Specified by: implies in class PermissionParameters: p - the permission to check against. 要检查的许可。 Returns: returnequalspublic boolean equals(Object obj)
Checks two AllPermission objects for equality. Two AllPermission objects are always equal. 检查两个AllPermission对象是否相等。两个AllPermission对象总是相等。
Specified by: equals in class PermissionParameters: obj - the object we are testing for equality with this object. 要和当前对象测试相等性的对象。 Returns: true if obj is an AllPermission, false otherwise. 如果obj是一个AllPermission,返回true,否则为false。hashCodepublic int hashCode()
Returns the hash code value for this object. 返回该对象的哈希码值。
Specified by: hashCode in class PermissionReturns: a hash code value for this object. 该对象的哈希码值。getActionspublic String getActions()
Returns the canonical string representation of the actions. 返回表示动作的规范字符串。
Specified by: getActions in class PermissionReturns: the actions. 动作。newPermissionCollectionpublic PermissionCollection newPermissionCollection()
Returns a new PermissionCollection object for storing AllPermission objects. 返回一个PermissionCollection对象,用于存储AllPermission对象。
Overrides: newPermissionCollection in class PermissionReturns: a new PermissionCollection object suitable for storing AllPermissions. 一个PermissionCollection对象,适合存储AllPermission对象。[/url][url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview
Class
JavaTM 2 Platform
Std. Ed. v1.4.2
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.