Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F4B718965 for ; Thu, 6 Aug 2015 17:12:26 +0000 (UTC) Received: (qmail 43689 invoked by uid 500); 6 Aug 2015 17:12:26 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 43648 invoked by uid 500); 6 Aug 2015 17:12:26 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 43639 invoked by uid 99); 6 Aug 2015 17:12:26 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Aug 2015 17:12:26 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 16A6EAC01A7 for ; Thu, 6 Aug 2015 17:12:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1694540 - /directory/studio/trunk/plugins/openldap.acl.editor/src/main/java/org/apache/directory/studio/openldap/config/acl/model/AclAttributeStyleEnum.java Date: Thu, 06 Aug 2015 17:12:25 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150806171226.16A6EAC01A7@hades.apache.org> Author: elecharny Date: Thu Aug 6 17:12:25 2015 New Revision: 1694540 URL: http://svn.apache.org/r1694540 Log: Added teh vairous possible Styles for an Acl Attributes Added: directory/studio/trunk/plugins/openldap.acl.editor/src/main/java/org/apache/directory/studio/openldap/config/acl/model/AclAttributeStyleEnum.java Added: directory/studio/trunk/plugins/openldap.acl.editor/src/main/java/org/apache/directory/studio/openldap/config/acl/model/AclAttributeStyleEnum.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/plugins/openldap.acl.editor/src/main/java/org/apache/directory/studio/openldap/config/acl/model/AclAttributeStyleEnum.java?rev=1694540&view=auto ============================================================================== --- directory/studio/trunk/plugins/openldap.acl.editor/src/main/java/org/apache/directory/studio/openldap/config/acl/model/AclAttributeStyleEnum.java (added) +++ directory/studio/trunk/plugins/openldap.acl.editor/src/main/java/org/apache/directory/studio/openldap/config/acl/model/AclAttributeStyleEnum.java Thu Aug 6 17:12:25 2015 @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.directory.studio.openldap.config.acl.model; + +/** + * + * @author Apache Directory Project + */ +public enum AclAttributeStyleEnum +{ + EXACT( "exact" ), + BASE( "base" ), + BASE_OBJECT( "baseobject" ), + REGEX( "regex" ), + ONE( "one" ), + ONE_LEVEL( "onelevel" ), + SUB( "sub" ), + SUBTREE( "subtree" ), + CHILDREN( "children" ), + NONE( "---" ); + + /** The interned name */ + private String name; + + /** + * A private constructor + */ + private AclAttributeStyleEnum( String name ) + { + this.name = name; + } + + + /** + * @return the name + */ + public String getName() + { + return name; + } +}