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 2007/04/02 20:16:02 UTC

svn commit: r524866 - in /directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context: ./ BindServiceContext.java ServiceContext.java

Author: elecharny
Date: Mon Apr  2 11:16:01 2007
New Revision: 524866

URL: http://svn.apache.org/viewvc?view=rev&rev=524866
Log:
Added the first Interceptor contexts : BindServiceContext

Added:
    directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/
    directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/BindServiceContext.java
    directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/ServiceContext.java

Added: directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/BindServiceContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/BindServiceContext.java?view=auto&rev=524866
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/BindServiceContext.java (added)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/BindServiceContext.java Mon Apr  2 11:16:01 2007
@@ -0,0 +1,91 @@
+/*
+ *  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.interceptor.context;
+
+import java.util.List;
+
+import org.apache.directory.shared.ldap.name.LdapDN;
+
+/**
+ * A Bind context used for Interceptors. It contains all the informations
+ * needed for the bind operation, and used by all the interceptors
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ * @version $Rev$, $Date$
+ */
+public class BindServiceContext implements ServiceContext
+{
+    private LdapDN bindDn;
+    private LdapDN normalizedBindDn;
+    private List<String> mechanisms;
+    private byte[] credentials;
+    private String saslAuthId;
+    
+    public LdapDN getBindDn()
+    {
+        return bindDn;
+    }
+    
+    public void setBindDn( LdapDN bindDn )
+    {
+        this.bindDn = bindDn;
+    }
+
+    public LdapDN getNormalizedBindDn()
+    {
+        return normalizedBindDn;
+    }
+
+    public void setNormalizedBindDn( LdapDN normalizedBindDn )
+    {
+        this.normalizedBindDn = normalizedBindDn;
+    }
+
+    public List<String> getMechanisms()
+    {
+        return mechanisms;
+    }
+
+    public void setMechanisms( List<String> mechanisms )
+    {
+        this.mechanisms = mechanisms;
+    }
+
+    public byte[] getCredentials()
+    {
+        return credentials;
+    }
+
+    public void setCredentials( byte[] credentials )
+    {
+        this.credentials = credentials;
+    }
+
+    public String getSaslAuthId()
+    {
+        return saslAuthId;
+    }
+
+    public void setSaslAuthId( String saslAuthId )
+    {
+        this.saslAuthId = saslAuthId;
+    }
+    
+}

Added: directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/ServiceContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/ServiceContext.java?view=auto&rev=524866
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/ServiceContext.java (added)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/context/ServiceContext.java Mon Apr  2 11:16:01 2007
@@ -0,0 +1,32 @@
+/*
+ *  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.interceptor.context;
+
+/**
+ * This interface represent the context passed as an argument to each interceptor.
+ * It will contain data used by all the operations.
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ * @version $Rev$, $Date$
+ */
+public interface ServiceContext
+{
+
+}