You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ka...@apache.org on 2010/10/27 13:48:24 UTC

svn commit: r1027925 - /directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/PpolicyConfigContainer.java

Author: kayyagari
Date: Wed Oct 27 11:48:24 2010
New Revision: 1027925

URL: http://svn.apache.org/viewvc?rev=1027925&view=rev
Log:
o a container to hold all the password policies

Added:
    directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/PpolicyConfigContainer.java

Added: directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/PpolicyConfigContainer.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/PpolicyConfigContainer.java?rev=1027925&view=auto
==============================================================================
--- directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/PpolicyConfigContainer.java (added)
+++ directory/apacheds/trunk/core-api/src/main/java/org/apache/directory/server/core/PpolicyConfigContainer.java Wed Oct 27 11:48:24 2010
@@ -0,0 +1,102 @@
+/*
+ *   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.server.core;
+
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.apache.directory.shared.ldap.name.DN;
+
+
+/**
+ * A container to hold all the password policies defined in the server
+ * 
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ */
+public class PpolicyConfigContainer
+{
+
+    /** a map holding the entry specific password policies */
+    private Map<DN, PasswordPolicyConfiguration> ppolicyConfigMap = new HashMap<DN, PasswordPolicyConfiguration>();
+
+    /** the default password policy */
+    private PasswordPolicyConfiguration defaultPolicy;
+
+
+    /**
+     * add a entry specific policy
+     *
+     * @param configDn the DN where this entry's password policy is defined
+     * @param policyConfig the password policy configuration
+     */
+    public void addPolicy( DN configDn, PasswordPolicyConfiguration policyConfig )
+    {
+        if ( configDn == null )
+        {
+            throw new IllegalArgumentException( "password policy config's DN cannot be null" );
+        }
+
+        ppolicyConfigMap.put( configDn, policyConfig );
+    }
+
+
+    /**
+     * @return true if atleast one entry specific password policy exists, false otherwise
+     */
+    public boolean hasCustomConfigs()
+    {
+        return ( !ppolicyConfigMap.isEmpty() );
+    }
+    
+    
+    /**
+     * Get the password policy configuration defined at a given DN 
+     *  
+     * @param configDn the DN where password policy was configured
+     * @return
+     */
+    public PasswordPolicyConfiguration getPolicyConfig( DN configDn )
+    {
+        return ppolicyConfigMap.get( configDn );
+    }
+
+
+    /**
+     * @return the default password policy, null if not configured
+     */
+    public PasswordPolicyConfiguration getDefaultPolicy()
+    {
+        return defaultPolicy;
+    }
+
+
+    /**
+     * Set the default password policy configuration
+     * 
+     * @param defaultPolicy the password policy configuration instance
+     */
+    public void setDefaultPolicy( PasswordPolicyConfiguration defaultPolicy )
+    {
+        this.defaultPolicy = defaultPolicy;
+    }
+
+}