Searched defs:mods (Results 1 - 25 of 228) sorted by relevance

12345678910

/forgerock/opendj-b2.6/src/server/org/opends/server/replication/plugin/
H A DFakeModifyOperation.java48 private ArrayList<Modification> mods = new ArrayList<Modification>(); field in class:FakeModifyOperation
75 mods.add(mod);
84 return new ModifyMsg(super.getChangeNumber(), dn, mods, entryuuid);
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DIndexer.java76 * @param mods The set of modifications that were applied to the entry.
80 List<Modification> mods,
79 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
H A DID2CIndexer.java120 * @param mods The set of modifications that were applied to the entry.
124 List<Modification> mods,
123 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
H A DID2SIndexer.java119 * @param mods The set of modifications that were applied to the entry.
123 List<Modification> mods,
122 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
H A DPresenceIndexer.java147 * @param mods The set of modifications that were applied to the entry.
151 List<Modification> mods,
150 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
/forgerock/opendj2/src/server/org/opends/server/replication/plugin/
H A DFakeModifyOperation.java47 private List<Modification> mods = new ArrayList<Modification>(); field in class:FakeModifyOperation
74 mods.add(mod);
83 return new ModifyMsg(getCSN(), dn, mods, entryuuid);
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DIndexer.java77 * @param mods The set of modifications that were applied to the entry.
81 List<Modification> mods,
80 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
H A DID2CIndexer.java121 * @param mods The set of modifications that were applied to the entry.
125 List<Modification> mods,
124 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
H A DID2SIndexer.java120 * @param mods The set of modifications that were applied to the entry.
124 List<Modification> mods,
123 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
H A DPresenceIndexer.java148 * @param mods The set of modifications that were applied to the entry.
152 List<Modification> mods,
151 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DIndexer.java77 * @param mods The set of modifications that were applied to the entry.
81 List<Modification> mods,
80 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
H A DID2CIndexer.java121 * @param mods The set of modifications that were applied to the entry.
125 List<Modification> mods,
124 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/plugin/
H A DFakeModifyOperation.java48 private ArrayList<Modification> mods = new ArrayList<Modification>(); field in class:FakeModifyOperation
75 mods.add(mod);
84 return new ModifyMsg(super.getChangeNumber(), dn, mods, entryuuid);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/plugin/
H A DFakeModifyOperation.java48 private ArrayList<Modification> mods = new ArrayList<Modification>(); field in class:FakeModifyOperation
75 mods.add(mod);
84 return new ModifyMsg(super.getChangeNumber(), dn, mods, entryuuid);
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DIndexer.java76 * @param mods The set of modifications that were applied to the entry.
80 List<Modification> mods,
79 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
/forgerock/opendj2-hg/src/server/org/opends/server/replication/plugin/
H A DFakeModifyOperation.java47 private List<Modification> mods = new ArrayList<Modification>(); field in class:FakeModifyOperation
74 mods.add(mod);
83 return new ModifyMsg(getCSN(), dn, mods, entryuuid);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DIndexer.java77 * @param mods The set of modifications that were applied to the entry.
81 List<Modification> mods,
80 modifyEntry(Entry oldEntry, Entry newEntry, List<Modification> mods, Map<byte[], Boolean> modifiedKeys) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/
H A DFakeModifyOperation.java47 private List<Modification> mods = new ArrayList<>(); field in class:FakeModifyOperation
74 mods.add(mod);
81 return new ModifyMsg(getCSN(), dn, mods, entryuuid);
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/protocol/
H A DModifyCommonMsg.java98 * @param mods The new Modification associated to this ModifyMsg.
100 public void setMods(List<Modification> mods) argument
102 encodedMods = encodeMods(mods);
113 List<Modification> mods = new ArrayList<Modification>();
118 mods.add((LDAPModification.decode(reader)).toModification());
120 return mods;
131 * @param mods the ArrayList of Modification to be encoded.
134 protected byte[] encodeMods(List<Modification> mods) argument
136 if ((mods == null) || (mods
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/client/ldap/
H A DLDAPConnection.java118 * @param mods
123 public abstract void modifyEntry(LdapName dn, Attributes mods) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/client/ldap/
H A DLDAPConnection.java119 * @param mods
124 public abstract void modifyEntry(LdapName dn, Attributes mods) argument
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/
H A DModifyEntryMockLDAPConnection.java116 public void modifyEntry(LdapName dn, Attributes mods) throws NamingException { argument
122 NamingEnumeration<? extends Attribute> ne = mods.getAll();
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DModifyCommonMsg.java91 * @param mods The new Modification associated to this ModifyMsg.
93 public void setMods(List<Modification> mods) argument
95 encodedMods = encodeMods(mods);
117 * @param mods the ArrayList of Modification to be encoded.
120 protected byte[] encodeMods(List<Modification> mods) argument
122 if ((mods == null) || (mods.size() == 0))
128 for (Modification mod : mods)
164 * Decode mods from the provided byte array.
168 * @return The decoded mods
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/
H A DModifyEntryMockLDAPConnection.java115 public void modifyEntry(LdapName dn, Attributes mods) throws NamingException { argument
121 NamingEnumeration<? extends Attribute> ne = mods.getAll();
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/client/ldap/
H A DLDAPConnection.java119 * @param mods
124 public abstract void modifyEntry(LdapName dn, Attributes mods) argument

Completed in 212 milliseconds

12345678910