Author: elecharny
Date: Tue Mar 31 15:31:51 2009
New Revision: 760481
URL: http://svn.apache.org/viewvc?rev=760481&view=rev
Log:
Renamed all the XXXRequest interface in shared message to InternalXXXRequest
Modified:
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/CoreSession.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/DefaultCoreSession.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/event/NotificationCriteria.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddOperationContext.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/CompareOperationContext.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/DeleteOperationContext.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/ModifyOperationContext.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveAndRenameOperationContext.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveOperationContext.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/RenameOperationContext.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/SearchOperationContext.java
directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/UnbindOperationContext.java
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/CoreSession.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/CoreSession.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/CoreSession.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/CoreSession.java
Tue Mar 31 15:31:51 2009
@@ -37,14 +37,14 @@
import org.apache.directory.shared.ldap.entry.Modification;
import org.apache.directory.shared.ldap.filter.ExprNode;
import org.apache.directory.shared.ldap.filter.SearchScope;
-import org.apache.directory.shared.ldap.message.AddRequest;
+import org.apache.directory.shared.ldap.message.InternalAddRequest;
import org.apache.directory.shared.ldap.message.AliasDerefMode;
-import org.apache.directory.shared.ldap.message.CompareRequest;
-import org.apache.directory.shared.ldap.message.DeleteRequest;
-import org.apache.directory.shared.ldap.message.ModifyDnRequest;
-import org.apache.directory.shared.ldap.message.ModifyRequest;
-import org.apache.directory.shared.ldap.message.SearchRequest;
-import org.apache.directory.shared.ldap.message.UnbindRequest;
+import org.apache.directory.shared.ldap.message.InternalCompareRequest;
+import org.apache.directory.shared.ldap.message.InternalDeleteRequest;
+import org.apache.directory.shared.ldap.message.InternalModifyDnRequest;
+import org.apache.directory.shared.ldap.message.InternalModifyRequest;
+import org.apache.directory.shared.ldap.message.InternalSearchRequest;
+import org.apache.directory.shared.ldap.message.InternalUnbindRequest;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.apache.directory.shared.ldap.name.Rdn;
import org.apache.directory.shared.ldap.schema.AttributeTypeOptions;
@@ -250,21 +250,21 @@
* Adds an entry into the DirectoryService associated with this CoreSession.
* The entry is built using the received AddRequest.
*
- * @param AddRequest the request to execute
+ * @param InternalAddRequest the request to execute
* @exception Exception on failures to add the entry
*/
- void add( AddRequest addRequest ) throws Exception;
+ void add( InternalAddRequest addRequest ) throws Exception;
/**
* Adds an entry into the DirectoryService associated with this CoreSession.
* The entry is built using the received AddRequest.
*
- * @param AddRequest the request to execute
+ * @param InternalAddRequest the request to execute
* @param log a flag set if the added entry should be stored in the changeLog
* @exception Exception on failures to add the entry
*/
- void add( AddRequest addRequest, LogChange log ) throws Exception;
+ void add( InternalAddRequest addRequest, LogChange log ) throws Exception;
/**
@@ -298,7 +298,7 @@
* @param compareRequest the received request
* @throws Exception if there are failures while comparing
*/
- boolean compare( CompareRequest compareRequest ) throws Exception;
+ boolean compare( InternalCompareRequest compareRequest ) throws Exception;
/**
@@ -320,10 +320,10 @@
void delete( LdapDN dn, LogChange log ) throws Exception;
- void delete( DeleteRequest deleteRequest ) throws Exception;
+ void delete( InternalDeleteRequest deleteRequest ) throws Exception;
- void delete( DeleteRequest deleteRequest, LogChange log ) throws Exception;
+ void delete( InternalDeleteRequest deleteRequest, LogChange log ) throws Exception;
/**
@@ -429,10 +429,10 @@
void modify( LdapDN dn, List<Modification> mods, boolean ignoreReferral, LogChange
log ) throws Exception;
- void modify( ModifyRequest modifyRequest ) throws Exception;
+ void modify( InternalModifyRequest modifyRequest ) throws Exception;
- void modify( ModifyRequest modifyRequest, LogChange log ) throws Exception;
+ void modify( InternalModifyRequest modifyRequest, LogChange log ) throws Exception;
/**
@@ -489,7 +489,7 @@
* @param modifyDnRequest The ModifyDN request
* @throws Exception if there are failures while moving the entry/branch
*/
- void move( ModifyDnRequest modifyDnRequest ) throws Exception;
+ void move( InternalModifyDnRequest modifyDnRequest ) throws Exception;
/**
@@ -499,7 +499,7 @@
* @param log a flag set if the added entry should be stored in the changeLog
* @throws Exception if there are failures while moving the entry/branch
*/
- void move( ModifyDnRequest modifyDnRequest, LogChange log ) throws Exception;
+ void move( InternalModifyDnRequest modifyDnRequest, LogChange log ) throws Exception;
/**
@@ -573,7 +573,7 @@
* @throws Exception if there are failures while moving and renaming the entry
* or branch
*/
- void moveAndRename( ModifyDnRequest modifyDnRequest ) throws Exception;
+ void moveAndRename( InternalModifyDnRequest modifyDnRequest ) throws Exception;
/**
@@ -584,7 +584,7 @@
* @throws Exception if there are failures while moving and renaming the entry
* or branch
*/
- void moveAndRename( ModifyDnRequest modifyDnRequest, LogChange log ) throws Exception;
+ void moveAndRename( InternalModifyDnRequest modifyDnRequest, LogChange log ) throws Exception;
/**
@@ -657,7 +657,7 @@
* @param modifyDnRequest The requested modification
* @throws Exception if there are failures while renaming the entry
*/
- void rename( ModifyDnRequest modifyDnRequest ) throws Exception;
+ void rename( InternalModifyDnRequest modifyDnRequest ) throws Exception;
/**
@@ -667,7 +667,7 @@
* @param log a flag set if the added entry should be stored in the changeLog
* @throws Exception if there are failures while renaming the entry
*/
- void rename( ModifyDnRequest modifyDnRequest, LogChange log ) throws Exception;
+ void rename( InternalModifyDnRequest modifyDnRequest, LogChange log ) throws Exception;
/**
@@ -770,11 +770,11 @@
Set<AttributeTypeOptions> returningAttributes, int sizeLimit, int timeLimit
) throws Exception;
- EntryFilteringCursor search( SearchRequest searchRequest ) throws Exception;
+ EntryFilteringCursor search( InternalSearchRequest searchRequest ) throws Exception;
void unbind() throws Exception;
- void unbind( UnbindRequest unbindRequest ) throws Exception;
+ void unbind( InternalUnbindRequest unbindRequest ) throws Exception;
}
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/DefaultCoreSession.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/DefaultCoreSession.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/DefaultCoreSession.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/DefaultCoreSession.java
Tue Mar 31 15:31:51 2009
@@ -57,14 +57,14 @@
import org.apache.directory.shared.ldap.filter.ExprNode;
import org.apache.directory.shared.ldap.filter.FilterParser;
import org.apache.directory.shared.ldap.filter.SearchScope;
-import org.apache.directory.shared.ldap.message.AddRequest;
+import org.apache.directory.shared.ldap.message.InternalAddRequest;
import org.apache.directory.shared.ldap.message.AliasDerefMode;
-import org.apache.directory.shared.ldap.message.CompareRequest;
-import org.apache.directory.shared.ldap.message.DeleteRequest;
-import org.apache.directory.shared.ldap.message.ModifyDnRequest;
-import org.apache.directory.shared.ldap.message.ModifyRequest;
-import org.apache.directory.shared.ldap.message.SearchRequest;
-import org.apache.directory.shared.ldap.message.UnbindRequest;
+import org.apache.directory.shared.ldap.message.InternalCompareRequest;
+import org.apache.directory.shared.ldap.message.InternalDeleteRequest;
+import org.apache.directory.shared.ldap.message.InternalModifyDnRequest;
+import org.apache.directory.shared.ldap.message.InternalModifyRequest;
+import org.apache.directory.shared.ldap.message.InternalSearchRequest;
+import org.apache.directory.shared.ldap.message.InternalUnbindRequest;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.apache.directory.shared.ldap.name.Rdn;
import org.apache.directory.shared.ldap.schema.AttributeType;
@@ -164,7 +164,7 @@
/**
* {@inheritDoc}
*/
- public void add( AddRequest addRequest ) throws Exception
+ public void add( InternalAddRequest addRequest ) throws Exception
{
add( addRequest, LogChange.TRUE );
}
@@ -173,7 +173,7 @@
/**
* {@inheritDoc}
*/
- public void add( AddRequest addRequest, LogChange log ) throws Exception
+ public void add( InternalAddRequest addRequest, LogChange log ) throws Exception
{
AddOperationContext opContext = new AddOperationContext( this, addRequest );
@@ -765,7 +765,7 @@
/**
* {@inheritDoc}
*/
- public boolean compare( CompareRequest compareRequest ) throws Exception
+ public boolean compare( InternalCompareRequest compareRequest ) throws Exception
{
CompareOperationContext opContext = new CompareOperationContext( this, compareRequest
);
OperationManager operationManager = directoryService.getOperationManager();
@@ -778,7 +778,7 @@
/**
* {@inheritDoc}
*/
- public void delete( DeleteRequest deleteRequest ) throws Exception
+ public void delete( InternalDeleteRequest deleteRequest ) throws Exception
{
delete( deleteRequest, LogChange.TRUE );
}
@@ -787,7 +787,7 @@
/**
* {@inheritDoc}
*/
- public void delete( DeleteRequest deleteRequest, LogChange log ) throws Exception
+ public void delete( InternalDeleteRequest deleteRequest, LogChange log ) throws Exception
{
DeleteOperationContext opContext = new DeleteOperationContext( this, deleteRequest
);
@@ -810,7 +810,7 @@
/**
* {@inheritDoc}
*/
- public void modify( ModifyRequest modifyRequest ) throws Exception
+ public void modify( InternalModifyRequest modifyRequest ) throws Exception
{
modify( modifyRequest, LogChange.TRUE );
}
@@ -819,7 +819,7 @@
/**
* {@inheritDoc}
*/
- public void modify( ModifyRequest modifyRequest, LogChange log ) throws Exception
+ public void modify( InternalModifyRequest modifyRequest, LogChange log ) throws Exception
{
ModifyOperationContext opContext = new ModifyOperationContext( this, modifyRequest
);
@@ -834,7 +834,7 @@
/**
* {@inheritDoc}
*/
- public void move( ModifyDnRequest modifyDnRequest ) throws Exception
+ public void move( InternalModifyDnRequest modifyDnRequest ) throws Exception
{
move( modifyDnRequest, LogChange.TRUE );
}
@@ -843,7 +843,7 @@
/**
* {@inheritDoc}
*/
- public void move( ModifyDnRequest modifyDnRequest, LogChange log ) throws Exception
+ public void move( InternalModifyDnRequest modifyDnRequest, LogChange log ) throws Exception
{
MoveOperationContext opContext = new MoveOperationContext( this, modifyDnRequest
);
@@ -858,7 +858,7 @@
/**
* {@inheritDoc}
*/
- public void moveAndRename( ModifyDnRequest modifyDnRequest ) throws Exception
+ public void moveAndRename( InternalModifyDnRequest modifyDnRequest ) throws Exception
{
moveAndRename( modifyDnRequest, LogChange.TRUE );
}
@@ -867,7 +867,7 @@
/**
* {@inheritDoc}
*/
- public void moveAndRename( ModifyDnRequest modifyDnRequest, LogChange log ) throws Exception
+ public void moveAndRename( InternalModifyDnRequest modifyDnRequest, LogChange log ) throws
Exception
{
MoveAndRenameOperationContext opContext = new MoveAndRenameOperationContext( this,
modifyDnRequest );
@@ -882,7 +882,7 @@
/**
* {@inheritDoc}
*/
- public void rename( ModifyDnRequest modifyDnRequest ) throws Exception
+ public void rename( InternalModifyDnRequest modifyDnRequest ) throws Exception
{
rename( modifyDnRequest, LogChange.TRUE );
}
@@ -891,7 +891,7 @@
/**
* {@inheritDoc}
*/
- public void rename( ModifyDnRequest modifyDnRequest, LogChange log ) throws Exception
+ public void rename( InternalModifyDnRequest modifyDnRequest, LogChange log ) throws Exception
{
RenameOperationContext opContext = new RenameOperationContext( this, modifyDnRequest
);
@@ -903,7 +903,7 @@
}
- public EntryFilteringCursor search( SearchRequest searchRequest ) throws Exception
+ public EntryFilteringCursor search( InternalSearchRequest searchRequest ) throws Exception
{
SearchOperationContext opContext = new SearchOperationContext( this, searchRequest
);
OperationManager operationManager = directoryService.getOperationManager();
@@ -920,7 +920,7 @@
}
- public void unbind( UnbindRequest unbindRequest )
+ public void unbind( InternalUnbindRequest unbindRequest )
{
// TODO Auto-generated method stub
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/event/NotificationCriteria.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/event/NotificationCriteria.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/event/NotificationCriteria.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/event/NotificationCriteria.java
Tue Mar 31 15:31:51 2009
@@ -26,7 +26,7 @@
import org.apache.directory.shared.ldap.filter.PresenceNode;
import org.apache.directory.shared.ldap.filter.SearchScope;
import org.apache.directory.shared.ldap.message.AliasDerefMode;
-import org.apache.directory.shared.ldap.message.SearchRequest;
+import org.apache.directory.shared.ldap.message.InternalSearchRequest;
import org.apache.directory.shared.ldap.name.LdapDN;
@@ -56,7 +56,7 @@
}
- public NotificationCriteria( SearchRequest req )
+ public NotificationCriteria( InternalSearchRequest req )
{
this.scope = req.getScope();
this.aliasDerefMode = req.getDerefAliases();
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/AddOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -24,7 +24,7 @@
import org.apache.directory.server.core.entry.ClonedServerEntry;
import org.apache.directory.server.core.entry.DefaultServerEntry;
import org.apache.directory.server.core.entry.ServerEntry;
-import org.apache.directory.shared.ldap.message.AddRequest;
+import org.apache.directory.shared.ldap.message.InternalAddRequest;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
@@ -89,7 +89,7 @@
}
- public AddOperationContext( CoreSession session, AddRequest addRequest ) throws Exception
+ public AddOperationContext( CoreSession session, InternalAddRequest addRequest ) throws
Exception
{
super( session );
entry = new ClonedServerEntry(
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/CompareOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/CompareOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/CompareOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/CompareOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -24,7 +24,7 @@
import org.apache.directory.shared.ldap.entry.Value;
import org.apache.directory.shared.ldap.entry.client.ClientBinaryValue;
import org.apache.directory.shared.ldap.entry.client.ClientStringValue;
-import org.apache.directory.shared.ldap.message.CompareRequest;
+import org.apache.directory.shared.ldap.message.InternalCompareRequest;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
@@ -106,7 +106,7 @@
}
- public CompareOperationContext( CoreSession session, CompareRequest compareRequest )
+ public CompareOperationContext( CoreSession session, InternalCompareRequest compareRequest
)
{
super( session, compareRequest.getName() );
this.oid = compareRequest.getAttributeId();
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/DeleteOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/DeleteOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/DeleteOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/DeleteOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -22,7 +22,7 @@
import org.apache.directory.server.core.CoreSession;
import org.apache.directory.server.core.entry.ClonedServerEntry;
-import org.apache.directory.shared.ldap.message.DeleteRequest;
+import org.apache.directory.shared.ldap.message.InternalDeleteRequest;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
@@ -64,7 +64,7 @@
}
- public DeleteOperationContext( CoreSession session, DeleteRequest deleteRequest )
+ public DeleteOperationContext( CoreSession session, InternalDeleteRequest deleteRequest
)
{
super( session, deleteRequest.getName() );
requestControls = deleteRequest.getControls();
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/ModifyOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/ModifyOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/ModifyOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/ModifyOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -35,7 +35,7 @@
import org.apache.directory.shared.ldap.entry.ModificationOperation;
import org.apache.directory.shared.ldap.entry.client.ClientModification;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
-import org.apache.directory.shared.ldap.message.ModifyRequest;
+import org.apache.directory.shared.ldap.message.InternalModifyRequest;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
@@ -81,7 +81,7 @@
}
- public ModifyOperationContext( CoreSession session, ModifyRequest modifyRequest ) throws
Exception
+ public ModifyOperationContext( CoreSession session, InternalModifyRequest modifyRequest
) throws Exception
{
super( session, modifyRequest.getName() );
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveAndRenameOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveAndRenameOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveAndRenameOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveAndRenameOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -21,7 +21,7 @@
import org.apache.directory.server.core.CoreSession;
-import org.apache.directory.shared.ldap.message.ModifyDnRequest;
+import org.apache.directory.shared.ldap.message.InternalModifyDnRequest;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.apache.directory.shared.ldap.name.Rdn;
@@ -66,7 +66,7 @@
}
- public MoveAndRenameOperationContext( CoreSession session, ModifyDnRequest modifyDnRequest
)
+ public MoveAndRenameOperationContext( CoreSession session, InternalModifyDnRequest modifyDnRequest
)
{
// super sets the newRdn and the delOldRdn members and tests
super( session, modifyDnRequest );
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/MoveOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -22,7 +22,7 @@
import org.apache.directory.server.core.CoreSession;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
-import org.apache.directory.shared.ldap.message.ModifyDnRequest;
+import org.apache.directory.shared.ldap.message.InternalModifyDnRequest;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
@@ -59,7 +59,7 @@
}
- public MoveOperationContext( CoreSession session, ModifyDnRequest modifyDnRequest )
+ public MoveOperationContext( CoreSession session, InternalModifyDnRequest modifyDnRequest
)
{
super( session, modifyDnRequest.getName() );
this.parent = modifyDnRequest.getNewSuperior();
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/RenameOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/RenameOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/RenameOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/RenameOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -23,7 +23,7 @@
import org.apache.directory.server.core.CoreSession;
import org.apache.directory.server.core.entry.ClonedServerEntry;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
-import org.apache.directory.shared.ldap.message.ModifyDnRequest;
+import org.apache.directory.shared.ldap.message.InternalModifyDnRequest;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.apache.directory.shared.ldap.name.Rdn;
@@ -77,7 +77,7 @@
}
- public RenameOperationContext( CoreSession session, ModifyDnRequest modifyDnRequest )
+ public RenameOperationContext( CoreSession session, InternalModifyDnRequest modifyDnRequest
)
{
super( session, modifyDnRequest.getName() );
this.newRdn = modifyDnRequest.getNewRdn();
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/SearchOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/SearchOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/SearchOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/SearchOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -29,7 +29,7 @@
import org.apache.directory.shared.ldap.filter.SearchScope;
import org.apache.directory.shared.ldap.message.AliasDerefMode;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
-import org.apache.directory.shared.ldap.message.SearchRequest;
+import org.apache.directory.shared.ldap.message.InternalSearchRequest;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.apache.directory.shared.ldap.schema.AttributeTypeOptions;
@@ -61,7 +61,7 @@
* Creates a new instance of SearchOperationContext.
* @throws Exception
*/
- public SearchOperationContext( CoreSession session, SearchRequest searchRequest ) throws
Exception
+ public SearchOperationContext( CoreSession session, InternalSearchRequest searchRequest
) throws Exception
{
super( session );
Modified: directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/UnbindOperationContext.java
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/UnbindOperationContext.java?rev=760481&r1=760480&r2=760481&view=diff
==============================================================================
--- directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/UnbindOperationContext.java
(original)
+++ directory/apacheds/branches/apacheds-replication/core/src/main/java/org/apache/directory/server/core/interceptor/context/UnbindOperationContext.java
Tue Mar 31 15:31:51 2009
@@ -22,7 +22,7 @@
import org.apache.directory.server.core.CoreSession;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
-import org.apache.directory.shared.ldap.message.UnbindRequest;
+import org.apache.directory.shared.ldap.message.InternalUnbindRequest;
/**
@@ -43,7 +43,7 @@
}
- public UnbindOperationContext( CoreSession session, UnbindRequest unbindRequest )
+ public UnbindOperationContext( CoreSession session, InternalUnbindRequest unbindRequest
)
{
super( session, session.getEffectivePrincipal().getJndiName() );
this.setRequestControls( unbindRequest.getControls() );
|