You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2011/01/30 23:09:24 UTC

svn commit: r1065394 - in /directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec: DefaultLdapCodecService.java search/controls/entryChange/EntryChangeFactory.java

Author: akarasulu
Date: Sun Jan 30 22:09:24 2011
New Revision: 1065394

URL: http://svn.apache.org/viewvc?rev=1065394&view=rev
Log:
last commit before moving to branch

Added:
    directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/controls/entryChange/EntryChangeFactory.java
Modified:
    directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/DefaultLdapCodecService.java

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/DefaultLdapCodecService.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/DefaultLdapCodecService.java?rev=1065394&r1=1065393&r2=1065394&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/DefaultLdapCodecService.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/DefaultLdapCodecService.java Sun Jan 30 22:09:24 2011
@@ -29,9 +29,11 @@ import org.apache.directory.shared.asn1.
 import org.apache.directory.shared.asn1.EncoderException;
 import org.apache.directory.shared.ldap.codec.controls.CascadeFactory;
 import org.apache.directory.shared.ldap.codec.controls.ManageDsaITFactory;
+import org.apache.directory.shared.ldap.codec.search.controls.entryChange.EntryChangeFactory;
 import org.apache.directory.shared.ldap.codec.search.controls.subentries.SubentriesFactory;
 import org.apache.directory.shared.ldap.model.message.Control;
 import org.apache.directory.shared.ldap.model.message.controls.Cascade;
+import org.apache.directory.shared.ldap.model.message.controls.EntryChange;
 import org.apache.directory.shared.ldap.model.message.controls.ManageDsaIT;
 import org.apache.directory.shared.ldap.model.message.controls.Subentries;
 import org.apache.mina.filter.codec.ProtocolCodecFactory;
@@ -69,6 +71,9 @@ public class DefaultLdapCodecService imp
         
         ManageDsaITFactory manageDsaITFactory = new ManageDsaITFactory( this );
         controlFactories.put( ManageDsaIT.OID, manageDsaITFactory );
+        
+        EntryChangeFactory entryChangeFactory = new EntryChangeFactory( this );
+        controlFactories.put( EntryChange.OID, entryChangeFactory );
     }
     
 

Added: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/controls/entryChange/EntryChangeFactory.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/controls/entryChange/EntryChangeFactory.java?rev=1065394&view=auto
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/controls/entryChange/EntryChangeFactory.java (added)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/codec/search/controls/entryChange/EntryChangeFactory.java Sun Jan 30 22:09:24 2011
@@ -0,0 +1,118 @@
+/*
+ *   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.codec.search.controls.entryChange;
+
+
+import java.nio.ByteBuffer;
+
+import javax.naming.ldap.BasicControl;
+import javax.naming.ldap.Control;
+
+import org.apache.directory.shared.asn1.DecoderException;
+import org.apache.directory.shared.asn1.EncoderException;
+import org.apache.directory.shared.ldap.codec.DefaultLdapCodecService;
+import org.apache.directory.shared.ldap.codec.IControlFactory;
+import org.apache.directory.shared.ldap.codec.ILdapCodecService;
+import org.apache.directory.shared.ldap.model.message.controls.EntryChange;
+import org.apache.directory.shared.ldap.model.message.controls.EntryChangeImpl;
+
+
+/**
+ * A {@link IControlFactory} for {@link EntryChange} controls.
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ * @version $Rev$, $Date$
+ */
+public class EntryChangeFactory implements IControlFactory<EntryChange, EntryChangeDecorator>
+{
+    /** The LDAP codec service */
+    private ILdapCodecService codec = new DefaultLdapCodecService();
+
+    
+    /**
+     * Creates a new instance of EntryChangeFactory.
+     *
+     * @param codec The LDAP codec.
+     */
+    public EntryChangeFactory( ILdapCodecService codec )
+    {
+        this.codec = codec;
+    }
+    
+    
+    /**
+     * {@inheritDoc}
+     */
+    public String getOid()
+    {
+        return EntryChange.OID;
+    }
+
+    
+    /**
+     * {@inheritDoc}
+     */
+    public EntryChangeDecorator newCodecControl()
+    {
+        return new EntryChangeDecorator( codec );
+    }
+    
+
+    /**
+     * {@inheritDoc}
+     */
+    public EntryChangeDecorator decorate( EntryChange control )
+    {
+        return new EntryChangeDecorator( codec, control );
+    }
+
+    
+    /**
+     * {@inheritDoc}
+     */
+    public EntryChange newControl()
+    {
+        return new EntryChangeImpl();
+    }
+    
+
+    /**
+     * {@inheritDoc}
+     */
+    public Control toJndiControl( EntryChange control ) throws EncoderException
+    {
+        EntryChangeDecorator decorator = decorate( control );
+        ByteBuffer bb = ByteBuffer.allocate( decorator.computeLength() );
+        decorator.encode( bb );
+        bb.flip();
+        return new BasicControl( EntryChange.OID, control.isCritical(), bb.array() );
+    }
+
+
+    /**
+     * {@inheritDoc}
+     */
+    public EntryChange fromJndiControl( Control control ) throws DecoderException
+    {
+        EntryChangeDecorator decorator = new EntryChangeDecorator( codec );
+        decorator.setValue( control.getEncodedValue() );
+        return decorator;
+    }
+}