From c429ea0c780d83a49531de1f7d42e9f802ce8fe8 Mon Sep 17 00:00:00 2001
From: jdemendi <jdemendi@localhost>
Date: Tue, 17 Jul 2007 15:21:52 +0000
Subject: [PATCH]
---
opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java b/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
index 530a0b0..0e55409 100644
--- a/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
+++ b/opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
@@ -477,7 +477,7 @@
* @return A reference to the add operation that was processed and contains
* information about the result of the processing.
*/
- public AddOperationBasis processAdd(ASN1OctetString rawEntryDN,
+ public AddOperation processAdd(ASN1OctetString rawEntryDN,
ArrayList<RawAttribute> rawAttributes)
{
AddOperationBasis addOperation =
@@ -619,7 +619,7 @@
* @return A reference to the delete operation that was processed and
* contains information about the result of the processing.
*/
- public DeleteOperationBasis processDelete(ASN1OctetString rawEntryDN)
+ public DeleteOperation processDelete(ASN1OctetString rawEntryDN)
{
DeleteOperationBasis deleteOperation =
new DeleteOperationBasis(this, nextOperationID(), nextMessageID(),
@@ -676,7 +676,7 @@
* @return A reference to the modify operation that was processed and
* contains information about the result of the processing
*/
- public ModifyOperationBasis processModify(ASN1OctetString rawEntryDN,
+ public ModifyOperation processModify(ASN1OctetString rawEntryDN,
ArrayList<RawModification> rawModifications)
{
ModifyOperationBasis modifyOperation =
@@ -744,7 +744,7 @@
* @return A reference to the modify DN operation that was processed and
* contains information about the result of the processing.
*/
- public ModifyDNOperationBasis processModifyDN(ASN1OctetString rawEntryDN,
+ public ModifyDNOperation processModifyDN(ASN1OctetString rawEntryDN,
ASN1OctetString rawNewRDN,
boolean deleteOldRDN)
{
@@ -767,7 +767,7 @@
* @return A reference to the modify DN operation that was processed and
* contains information about the result of the processing.
*/
- public ModifyDNOperationBasis processModifyDN(ASN1OctetString rawEntryDN,
+ public ModifyDNOperation processModifyDN(ASN1OctetString rawEntryDN,
ASN1OctetString rawNewRDN,
boolean deleteOldRDN,
ASN1OctetString rawNewSuperior)
@@ -807,7 +807,7 @@
* processed and contains information about the result of
* the processing.
*/
- public ModifyDNOperationBasis processModifyDN(DN entryDN, RDN newRDN,
+ public ModifyDNOperation processModifyDN(DN entryDN, RDN newRDN,
boolean deleteOldRDN,
DN newSuperior)
{
--
Gitblit v1.10.0