中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档 | 网通镜像
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > 编程语言 > Java > 综合文章
java.security.GuardedObject翻译
作者:未知 时间:2005-07-27 22:47 出处:CSDN 责编:chinaitpower
              摘要:java.security.GuardedObject翻译
 
JavaTM 2 Platform
Std. Ed. v1.4.2

java.security
Class GuardedObject

java.lang.Object
  extended byjava.security.GuardedObject
All Implemented Interfaces:
Serializable

public class GuardedObject
extends Object
implements Serializable

A GuardedObject is an object that is used to protect access to another object. GuardedObject是用来保护对另一个对象访问的对象。

A GuardedObject encapsulates a target object and a Guard object, such that access to the target object is possible only if the Guard object allows it. Once an object is encapsulated by a GuardedObject, access to that object is controlled by the getObject method, which invokes the checkGuard method on the Guard object that is guarding access. If access is not allowed, an exception is thrown. GuardedObject封装了一个目标对象和一个Guard对象,这样只有Guard对象允许,才能访问目标对象。 一旦对象被封装至GuardedObject,访问该对象则由getObject方法控制,它调用Guard对象的checkGuard方法 使访问受保护。如果访问不允许,抛出异常。

See Also:
Guard, Permission, Serialized Form

Constructor Summary
GuardedObject(Object object, Guard guard)
          Constructs a GuardedObject using the specified object and guard. 使用指定对象和guard构建一个GuardedObject。
 
Method Summary
 ObjectgetObject()
          Retrieves the guarded object, or throws an exception if access to the guarded object is denied by the guard. 返回受保护对象,如果访问受保护对象被guard拒绝,抛出异常。
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GuardedObject

public GuardedObject(Object object,
                     Guard guard)
Constructs a GuardedObject using the specified object and guard. If the Guard object is null, then no restrictions will be placed on who can access the object. 使用指定对象和guard构建一个GuardedObject。如果Guard对象为null,则给定对象的访问不受限制。

Parameters:
object - the object to be guarded. 被保护的对象。
guard - the Guard object that guards access to the object. 保护对象访问的Guard对象。
Method Detail

getObject

public Object getObject()
                 throws SecurityException
Retrieves the guarded object, or throws an exception if access to the guarded object is denied by the guard. 返回受保护对象,如果访问受保护对象被guard拒绝,抛出异常。

Returns:
the guarded object. 受保护对象。
Throws:
SecurityException - if access to the guarded object is denied. 如果访问受保护对象被拒绝抛出。

JavaTM 2 Platform
Std. Ed. v1.4.2

Submit a bug or feature
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.


关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有