<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2-rc) on Fri Jun 13 00:14:34 PDT 2003 -->
<TITLE>
AclEntry (Java 2 Platform SE v1.4.2)
</TITLE>
<META NAME="keywords" CONTENT="java.security.acl.AclEntry interface">
<META NAME="keywords" CONTENT="setPrincipal()">
<META NAME="keywords" CONTENT="getPrincipal()">
<META NAME="keywords" CONTENT="setNegativePermissions()">
<META NAME="keywords" CONTENT="isNegative()">
<META NAME="keywords" CONTENT="addPermission()">
<META NAME="keywords" CONTENT="removePermission()">
<META NAME="keywords" CONTENT="checkPermission()">
<META NAME="keywords" CONTENT="permissions()">
<META NAME="keywords" CONTENT="toString()">
<META NAME="keywords" CONTENT="clone()">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="AclEntry (Java 2 Platform SE v1.4.2)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/AclEntry.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> 2 Platform<br>Std. Ed. v1.4.2</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../java/security/acl/Acl.html" title="interface in java.security.acl"><B>PREV CLASS</B></A>
<A HREF="../../../java/security/acl/Group.html" title="interface in java.security.acl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="AclEntry.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
java.security.acl</FONT>
<BR>
Interface AclEntry</H2>
<DL>
<DT><B>All Superinterfaces:</B> <DD><A HREF="../../../java/lang/Cloneable.html" title="interface in java.lang">Cloneable</A></DD>
</DL>
<HR>
<DL>
<DT>public interface <B>AclEntry</B><DT>extends <A HREF="../../../java/lang/Cloneable.html" title="interface in java.lang">Cloneable</A></DL>
<P>
This is the interface used for representing one entry in an Access
Control List (ACL).
该接口用来表示访问控制列表中(ACL)的一个入口。<p>
An ACL can be thought of as a data structure with multiple ACL entry
objects. Each ACL entry object contains a set of permissions associated
with a particular principal. (A principal represents an entity such as
an individual user or a group). Additionally, each ACL entry is specified
as being either positive or negative. If positive, the permissions are
to be granted to the associated principal. If negative, the permissions
are to be denied. Each principal can have at most one positive ACL entry
and one negative entry; that is, multiple positive or negative ACL
entries are not allowed for any principal.
Note: ACL entries are by default positive. An entry becomes a
negative entry only if the
<A HREF="../../../java/security/acl/AclEntry.html#setNegativePermissions()"><CODE>setNegativePermissions</CODE></A>
method is called on it.
ACL可以认为是包含多个ACL入口对象的数据结构,每个ACL入口包含特定主体相关的一组许可
(主体表示一个实体,比如个体或组)。另为,每个ACL入口都可以用肯定或否定描述:肯定表示许可被授予相关联的主体,否定
表示拒绝的许可。每个主体最多有一个肯定ACL入口和一个否定入口,也就是说,任何主体都不允许有多个肯定或否定ACL入口。
注:ACL入口默认为肯定,只有调用setNegativePermissions方法入口才会成为否定入口。
<P>
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../java/security/acl/Acl.html" title="interface in java.security.acl"><CODE>Acl</CODE></A></DL>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#addPermission(java.security.acl.Permission)">addPermission</A></B>(<A HREF="../../../java/security/acl/Permission.html" title="interface in java.security.acl">Permission</A> permission)</CODE>
<BR>
Adds the specified permission to this ACL entry.
给该ACL入口添加指定许可。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#checkPermission(java.security.acl.Permission)">checkPermission</A></B>(<A HREF="../../../java/security/acl/Permission.html" title="interface in java.security.acl">Permission</A> permission)</CODE>
<BR>
Checks if the specified permission is part of the
permission set in this entry.
检查该指定许可是否是该入口的一部分。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../java/lang/Object.html" title="class in java.lang">Object</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#clone()">clone</A></B>()</CODE>
<BR>
Clones this ACL entry.
克隆该ACL入口。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../java/security/Principal.html" title="interface in java.security">Principal</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#getPrincipal()">getPrincipal</A></B>()</CODE>
<BR>
Returns the principal for which permissions are granted or denied by
this ACL entry.
返回该ACL入口中许可授予或拒绝的主体。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#isNegative()">isNegative</A></B>()</CODE>
<BR>
Returns true if this is a negative ACL entry (one denying the
associated principal the set of permissions in the entry), false
otherwise.如果这是一个否定ACL入口(入口中拒绝相关主体以许可集合),返回true,否则为false。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../java/util/Enumeration.html" title="interface in java.util">Enumeration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#permissions()">permissions</A></B>()</CODE>
<BR>
Returns an enumeration of the permissions in this ACL entry.
返回该ACL入口中的许可枚举。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#removePermission(java.security.acl.Permission)">removePermission</A></B>(<A HREF="../../../java/security/acl/Permission.html" title="interface in java.security.acl">Permission</A> permission)</CODE>
<BR>
Removes the specified permission from this ACL entry.
从该ACL入口中删除指定的许可。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#setNegativePermissions()">setNegativePermissions</A></B>()</CODE>
<BR>
Sets this ACL entry to be a negative one.
将该ACL入口设置为否定。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#setPrincipal(java.security.Principal)">setPrincipal</A></B>(<A HREF="../../../java/security/Principal.html" title="interface in java.security">Principal</A> user)</CODE>
<BR>
Specifies the principal for which permissions are granted or denied
by this ACL entry. 指定该ACL入口授予或拒绝许可的主体。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../java/lang/String.html" title="class in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../java/security/acl/AclEntry.html#toString()">toString</A></B>()</CODE>
<BR>
Returns a string representation of the contents of this ACL entry.
返回该ACL入口内容的字符串形式。</TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="setPrincipal(java.security.Principal)"><!-- --></A><H3>
setPrincipal</H3>
<PRE>
public boolean <B>setPrincipal</B>(<A HREF="../../../java/security/Principal.html" title="interface in java.security">Principal</A> user)</PRE>
<DL>
<DD>Specifies the principal for which permissions are granted or denied
by this ACL entry. If a principal was already set for this ACL entry,
false is returned, otherwise true is returned.
指定该ACL入口授予或拒绝许可的主体。如果该主体已被设置给该ACL入口,返回false,否则返回true。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>user</CODE> - the principal to be set for this entry. 被设置给该入口的主体。
<DT><B>Returns:</B><DD>true if the principal is set, false if there was
already a principal set for this entry.
如果该主体被设置,返回true,如果入口中已有该主体返回false。<DT><B>See Also:</B><DD><A HREF="../../../java/security/acl/AclEntry.html#getPrincipal()"><CODE>getPrincipal()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getPrincipal()"><!-- --></A><H3>
getPrincipal</H3>
<PRE>
public <A HREF="../../../java/security/Principal.html" title="interface in java.security">Principal</A> <B>getPrincipal</B>()</PRE>
<DL>
<DD>Returns the principal for which permissions are granted or denied by
this ACL entry. Returns null if there is no principal set for this
entry yet. 返回该ACL入口中许可授予或拒绝的主体。如果该ACL入口中还没有主体设置给该入口返回null。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the principal associated with this entry. 与该入口相关的主体。<DT><B>See Also:</B><DD><A HREF="../../../java/security/acl/AclEntry.html#setPrincipal(java.security.Principal)"><CODE>setPrincipal(java.security.Principal)</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="setNegativePermissions()"><!-- --></A><H3>
setNegativePermissions</H3>
<PRE>
public void <B>setNegativePermissions</B>()</PRE>
<DL>
<DD>Sets this ACL entry to be a negative one. That is, the associated
principal (e.g., a user or a group) will be denied the permission set
specified in the entry.
Note: ACL entries are by default positive. An entry becomes a
negative entry only if this <code>setNegativePermissions</code>
method is called on it.
将该ACL入口设置为否定。也就是说,入口将指定关联主体(用户或组)拒绝该许可集合。
注:ACL入口默认为肯定。只有调用setNegativePermissions方法入口才会成为否定入口。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="isNegative()"><!-- --></A><H3>
isNegative</H3>
<PRE>
public boolean <B>isNegative</B>()</PRE>
<DL>
<DD>Returns true if this is a negative ACL entry (one denying the
associated principal the set of permissions in the entry), false
otherwise.
如果这是一个否定ACL入口(入口中拒绝相关主体以许可集合),返回true,否则为false。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if this is a negative ACL entry, false if it's not. 如果这是一个否定ACL入口,返回true,否则为false。</DL>
</DD>
</DL>
<HR>
<A NAME="addPermission(java.security.acl.Permission)"><!-- --></A><H3>
addPermission</H3>
<PRE>
public boolean <B>addPermission</B>(<A HREF="../../../java/security/acl/Permission.html" title="interface in java.security.acl">Permission</A> permission)</PRE>
<DL>
<DD>Adds the specified permission to this ACL entry. Note: An entry can
have multiple permissions.
给该ACL入口添加指定许可。注:一个入口可以有多个许可。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>permission</CODE> - the permission to be associated with
the principal in this entry. 入口中关联给该主体的许可。
<DT><B>Returns:</B><DD>true if the permission was added, false if the
permission was already part of this entry's permission set.
如果许可被添加,返回true,如果许可已经是该入口许可集合的一部分,返回false。</DL>
</DD>
</DL>
<HR>
<A NAME="removePermission(java.security.acl.Permission)"><!-- --></A><H3>
removePermission</H3>
<PRE>
public boolean <B>removePermission</B>(<A HREF="../../../java/security/acl/Permission.html" title="interface in java.security.acl">Permission</A> permission)</PRE>
<DL>
<DD>Removes the specified permission from this ACL entry.
从该ACL入口中删除指定的许可。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>permission</CODE> - the permission to be removed from this entry. 从该入口中被删除的许可。
<DT><B>Returns:</B><DD>true if the permission is removed, false if the
permission was not part of this entry's permission set.
如果该许可被删除,返回true,如果该许可不是该入口许可集合的一部分,返回false。</DL>
</DD>
</DL>
<HR>
<A NAME="checkPermission(java.security.acl.Permission)"><!-- --></A><H3>
checkPermission</H3>
<PRE>
public boolean <B>checkPermission</B>(<A HREF="../../../java/security/acl/Permission.html" title="interface in java.security.acl">Permission</A> permission)</PRE>
<DL>
<DD>Checks if the specified permission is part of the
permission set in this entry.
检查该指定许可是否是该入口的一部分。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>permission</CODE> - the permission to be checked for. 被检查的许可。
<DT><B>Returns:</B><DD>true if the permission is part of the
permission set in this entry, false otherwise. 如果该许可是该入口许可集合的一部分,返回true,否则为false。</DL>
</DD>
</DL>
<HR>
<A NAME="permissions()"><!-- --></A><H3>
permissions</H3>
<PRE>
public <A HREF="../../../java/util/Enumeration.html" title="interface in java.util">Enumeration</A> <B>permissions</B>()</PRE>
<DL>
<DD>Returns an enumeration of the permissions in this ACL entry.
返回该ACL入口中的许可枚举。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>an enumeration of the permissions in this ACL entry. 该ACL入口中的许可枚举。</DL>
</DD>
</DL>
<HR>
<A NAME="toString()"><!-- --></A><H3>
toString</H3>
<PRE>
public <A HREF="../../../java/lang/String.html" title="class in java.lang">String</A> <B>toString</B>()</PRE>
<DL>
<DD>Returns a string representation of the contents of this ACL entry.
返回该ACL入口内容的字符串形式。
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../java/lang/Object.html#toString()">toString</A></CODE> in class <CODE><A HREF="../../../java/lang/Object.html" title="class in java.lang">Object</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a string representation of the contents.
内容的字符串形式。</DL>
</DD>
</DL>
<HR>
<A NAME="clone()"><!-- --></A><H3>
clone</H3>
<PRE>
public <A HREF="../../../java/lang/Object.html" title="class in java.lang">Object</A> <B>clone</B>()</PRE>
<DL>
<DD>Clones this ACL entry. 克隆该ACL入口。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a clone of this ACL entry. 该ACL入口的克隆。</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/AclEntry.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> 2 Platform<br>Std. Ed. v1.4.2</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../java/security/acl/Acl.html" title="interface in java.security.acl"><B>PREV CLASS</B></A>
<A HREF="../../../java/security/acl/Group.html" title="interface in java.security.acl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="AclEntry.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<font size="-1"><a href="http://java.sun.com/cgi-bin/bugreport.cgi">Submit a bug or feature</a><br>For further API reference and developer documentation, see <a href="../../../../relnotes/devdocs-vs-specs.html">Java 2 SDK SE Developer Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. <p>Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to <a href="../../../../relnotes/license.html">license terms</a>. Also see the <a href="http://java.sun.com/docs/redist.html">documentation redistribution policy</a>.</font>
</BODY>
</HTML>