| | |
| | | * processed and contains information about the result of |
| | | * the processing. |
| | | */ |
| | | public ModifyDNOperation processModifyDN(String rawEntryDN, |
| | | public ModifyDNOperationBasis processModifyDN(String rawEntryDN, |
| | | String rawNewRDN, |
| | | boolean deleteOldRDN) |
| | | { |
| | |
| | | * processed and contains information about the result of |
| | | * the processing. |
| | | */ |
| | | public ModifyDNOperation processModifyDN(ByteString rawEntryDN, |
| | | public ModifyDNOperationBasis processModifyDN(ByteString rawEntryDN, |
| | | ByteString rawNewRDN, |
| | | boolean deleteOldRDN) |
| | | { |
| | |
| | | * processed and contains information about the result of |
| | | * the processing. |
| | | */ |
| | | public ModifyDNOperation processModifyDN(String rawEntryDN, |
| | | public ModifyDNOperationBasis processModifyDN(String rawEntryDN, |
| | | String rawNewRDN, |
| | | boolean deleteOldRDN, |
| | | String rawNewSuperior) |
| | |
| | | * processed and contains information about the result of |
| | | * the processing. |
| | | */ |
| | | public ModifyDNOperation processModifyDN(ByteString rawEntryDN, |
| | | public ModifyDNOperationBasis processModifyDN(ByteString rawEntryDN, |
| | | ByteString rawNewRDN, |
| | | boolean deleteOldRDN, |
| | | ByteString rawNewSuperior) |
| | | { |
| | | ModifyDNOperation modifyDNOperation = |
| | | new ModifyDNOperation(this, nextOperationID(), |
| | | ModifyDNOperationBasis modifyDNOperation = |
| | | new ModifyDNOperationBasis(this, nextOperationID(), |
| | | nextMessageID(), |
| | | new ArrayList<Control>(0), rawEntryDN, |
| | | rawNewRDN, deleteOldRDN, |
| | |
| | | * processed and contains information about the result of |
| | | * the processing. |
| | | */ |
| | | public ModifyDNOperation processModifyDN(DN entryDN, RDN newRDN, |
| | | public ModifyDNOperationBasis processModifyDN(DN entryDN, |
| | | RDN newRDN, |
| | | boolean deleteOldRDN) |
| | | { |
| | | return processModifyDN(entryDN, newRDN, deleteOldRDN, null); |
| | |
| | | * processed and contains information about the result of |
| | | * the processing. |
| | | */ |
| | | public ModifyDNOperation processModifyDN(DN entryDN, RDN newRDN, |
| | | public ModifyDNOperationBasis processModifyDN(DN entryDN, |
| | | RDN newRDN, |
| | | boolean deleteOldRDN, |
| | | DN newSuperior) |
| | | { |
| | | ModifyDNOperation modifyDNOperation = |
| | | new ModifyDNOperation(this, nextOperationID(), |
| | | ModifyDNOperationBasis modifyDNOperation = |
| | | new ModifyDNOperationBasis(this, nextOperationID(), |
| | | nextMessageID(), |
| | | new ArrayList<Control>(0), entryDN, |
| | | newRDN, deleteOldRDN, newSuperior); |