Searched defs:csn (Results 1 - 25 of 163) sorted by relevance

1234567

/forgerock/opendj2/src/server/org/opends/server/replication/plugin/
H A DFakeAddOperation.java48 * @param csn The CSN when the entry was created.
51 public FakeAddOperation(CSN csn, Entry entry) argument
53 super(csn);
H A DFakeModdnOperation.java49 * @param csn The CSN when the entry was last renamed.
52 public FakeModdnOperation(CSN csn, Entry entry) argument
54 super(csn);
H A DFakeOperation.java41 private CSN csn; field in class:FakeOperation
46 * @param csn The CSN to use to build the FakeOperation.
48 public FakeOperation(CSN csn) argument
50 this.csn = csn;
60 return csn;
H A DFakeDelOperation.java50 * @param csn The CSN of the operation.
53 public FakeDelOperation(DN dn, CSN csn, String entryUUID) argument
55 super(csn);
H A DFakeModifyOperation.java55 * @param csn The CSN of the operation.
58 public FakeModifyOperation(DN dn, CSN csn, String entryuuid) argument
60 super(csn);
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DAddContext.java44 * @param csn The CSN of the add operation.
48 public AddContext(CSN csn, String entryUUID, String parentEntryUUID) argument
50 super(csn, entryUUID);
H A DDeleteContext.java39 * @param csn The CSN of the Delete Operation.
42 public DeleteContext(CSN csn, String entryUUID) argument
44 super(csn, entryUUID);
H A DModifyContext.java41 * @param csn The CSN of the operation.
44 public ModifyContext(CSN csn, String entryUUID) argument
46 super(csn, entryUUID);
H A DModifyDnContext.java42 * @param csn The CSN of the operation.
48 public ModifyDnContext(CSN csn, String entryUUID, String newSuperiorEntryUUID) argument
50 super(csn, entryUUID);
H A DChangeTimeHeartbeatMsg.java46 private final CSN csn; field in class:ChangeTimeHeartbeatMsg
52 * @param csn
55 public ChangeTimeHeartbeatMsg(CSN csn) argument
57 this.csn = csn;
67 return csn;
93 csn = version >= REPLICATION_PROTOCOL_V7
119 builder.appendCSNUTF8(csn);
125 builder.appendCSN(csn);
133 return getClass().getSimpleName() + ", csn
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/plugin/
H A DFakeAddOperation.java48 * @param csn The CSN when the entry was created.
51 public FakeAddOperation(CSN csn, Entry entry) argument
53 super(csn);
H A DFakeModdnOperation.java49 * @param csn The CSN when the entry was last renamed.
52 public FakeModdnOperation(CSN csn, Entry entry) argument
54 super(csn);
H A DFakeOperation.java41 private CSN csn; field in class:FakeOperation
46 * @param csn The CSN to use to build the FakeOperation.
48 public FakeOperation(CSN csn) argument
50 this.csn = csn;
60 return csn;
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/
H A DAddContext.java44 * @param csn The CSN of the add operation.
48 public AddContext(CSN csn, String entryUUID, String parentEntryUUID) argument
50 super(csn, entryUUID);
H A DDeleteContext.java39 * @param csn The CSN of the Delete Operation.
42 public DeleteContext(CSN csn, String entryUUID) argument
44 super(csn, entryUUID);
H A DModifyContext.java41 * @param csn The CSN of the operation.
44 public ModifyContext(CSN csn, String entryUUID) argument
46 super(csn, entryUUID);
H A DModifyDnContext.java42 * @param csn The CSN of the operation.
48 public ModifyDnContext(CSN csn, String entryUUID, String newSuperiorEntryUUID) argument
50 super(csn, entryUUID);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/
H A DFakeAddOperation.java48 * @param csn The CSN when the entry was created.
51 public FakeAddOperation(CSN csn, Entry entry) argument
53 super(csn);
H A DFakeModdnOperation.java49 * @param csn The CSN when the entry was last renamed.
52 public FakeModdnOperation(CSN csn, Entry entry) argument
54 super(csn);
H A DFakeOperation.java41 private CSN csn; field in class:FakeOperation
46 * @param csn The CSN to use to build the FakeOperation.
48 public FakeOperation(CSN csn) argument
50 this.csn = csn;
60 return csn;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/
H A DAddContext.java44 * @param csn The CSN of the add operation.
48 public AddContext(CSN csn, String entryUUID, String parentEntryUUID) argument
50 super(csn, entryUUID);
H A DDeleteContext.java39 * @param csn The CSN of the Delete Operation.
42 public DeleteContext(CSN csn, String entryUUID) argument
44 super(csn, entryUUID);
H A DModifyContext.java41 * @param csn The CSN of the operation.
44 public ModifyContext(CSN csn, String entryUUID) argument
46 super(csn, entryUUID);
H A DModifyDnContext.java42 * @param csn The CSN of the operation.
48 public ModifyDnContext(CSN csn, String entryUUID, String newSuperiorEntryUUID) argument
50 super(csn, entryUUID);
/forgerock/opendj-b2.6/tests/staf-tests/shared/java/ldapjdk/
H A DChange.java35 CSN csn; field in class:Change
75 csn = new CSN(attr.getStringValueArray()[0]);
131 // println ("INFO", "FixupOp (csn="+ csn+"):\n" + changeHasReplFixupOp);
145 throw new Exception("Attribute changes is empty - replicationCSN="+ csn);
146 //EclReadAndPlay.accessOut.println (getDate() + "- WARNING: Ignore change csn=" + csn );
161 return ("change number " + changeNumber + " (csn="+csn +")");

Completed in 230 milliseconds

1234567