| | |
| | | InternalClientConnection conn = |
| | | InternalClientConnection.getRootConnection(); |
| | | AddOperationBasis addOperation = |
| | | new AddOperationBasis(conn, conn.nextOperationID(), conn.nextMessageID(), |
| | | new AddOperationBasis(conn, InternalClientConnection.nextOperationID(), InternalClientConnection.nextMessageID(), |
| | | null, entry.getDN(), entry.getObjectClasses(), |
| | | entry.getUserAttributes(), |
| | | entry.getOperationalAttributes()); |
| | |
| | | InternalClientConnection conn = |
| | | InternalClientConnection.getRootConnection(); |
| | | DeleteOperationBasis deleteOperation = |
| | | new DeleteOperationBasis(conn, conn.nextOperationID(), conn.nextMessageID(), |
| | | new DeleteOperationBasis(conn, InternalClientConnection.nextOperationID(), InternalClientConnection.nextMessageID(), |
| | | null, schemaDN); |
| | | |
| | | schemaBackend.deleteEntry(schemaDN, deleteOperation); |
| | |
| | | InternalClientConnection conn = |
| | | InternalClientConnection.getRootConnection(); |
| | | ModifyDNOperationBasis modifyDNOperation = |
| | | new ModifyDNOperationBasis(conn, conn.nextOperationID(), |
| | | conn.nextMessageID(), null, |
| | | new ModifyDNOperationBasis(conn, InternalClientConnection.nextOperationID(), |
| | | InternalClientConnection.nextMessageID(), null, |
| | | currentSchemaDN, newSchemaDN.getRDN(), |
| | | true, null); |
| | | |