You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2008/07/29 16:06:16 UTC

svn commit: r680700 - /directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/BindStatus.java

Author: elecharny
Date: Tue Jul 29 07:06:15 2008
New Revision: 680700

URL: http://svn.apache.org/viewvc?rev=680700&view=rev
Log:
Added a BindStatus enum to track the Bind state

Added:
    directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/BindStatus.java

Added: directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/BindStatus.java
URL: http://svn.apache.org/viewvc/directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/BindStatus.java?rev=680700&view=auto
==============================================================================
--- directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/BindStatus.java (added)
+++ directory/shared/branches/bigbang/ldap/src/main/java/org/apache/directory/shared/ldap/message/BindStatus.java Tue Jul 29 07:06:15 2008
@@ -0,0 +1,46 @@
+/*
+ *   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.shared.ldap.message;
+
+/**
+ * An enum used to store the BindRequest state.
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ * @version $Rev$, $Date$
+ */
+public enum BindStatus
+{
+    /** 
+     * We are in Anonymous state. The user specifically required to
+     * be anonymous
+     **/
+    ANONYMOUS,
+    
+    /**
+     * We have received a BindRequest
+     */
+    AUTH_PENDING,
+    
+    /**
+     * The user has been authenticated
+     */
+    AUTHENTICATED;
+}