You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2005/09/14 11:42:20 UTC

svn commit: r280809 - /directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/acl/ACITuple.java

Author: trustin
Date: Wed Sep 14 02:42:18 2005
New Revision: 280809

URL: http://svn.apache.org/viewcvs?rev=280809&view=rev
Log:
Added ACITuple that is used in ACDF.

Added:
    directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/acl/ACITuple.java   (with props)

Added: directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/acl/ACITuple.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/acl/ACITuple.java?rev=280809&view=auto
==============================================================================
--- directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/acl/ACITuple.java (added)
+++ directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/acl/ACITuple.java Wed Sep 14 02:42:18 2005
@@ -0,0 +1,30 @@
+/*
+ *   @(#) $Id$
+ *
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+package org.apache.ldap.common.acl;
+
+import java.util.Set;
+
+public interface ACITuple
+{
+    Set getUserClasses();
+    AuthenticationLevel getAuthenticationLevel();
+    Set getProtectedItems();
+    Set getGrantsAndDenials();
+    int getPrecedence();
+}

Propchange: directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/acl/ACITuple.java
------------------------------------------------------------------------------
    svn:keywords = HeadURL Id LastChangedBy LastChangedDate LastChangedRevision