Searched defs:data (Results 201 - 225 of 654) sorted by relevance

1234567891011>>

/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DMonitorMsg.java63 * Data structure to manage the state and the approximation of the data of the
81 /** The data related to the LDAP servers connected to this RS. */
84 /** The data related to the RS servers connected to this RS. */
89 private final SubTopoMonitorData data = new SubTopoMonitorData(); field in class:MonitorMsg
109 data.replServerDbState = state;
128 data.ldapStates.put(serverId, sd);
132 data.rsStates.put(serverId, sd);
143 return data.ldapStates.get(serverId).state;
153 return data.rsStates.get(serverId).state;
164 return data
311 append(final ByteArrayBuilder builder, int data, short protocolVersion) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/server/changelog/je/
H A DDraftCNDB.java95 DatabaseEntry data = new DraftCNData(changeNumber, record.getBaseDN().toNormalizedString(), record.getCSN());
109 db.put(txn, key, data);
228 DatabaseEntry data) throws ChangelogException
230 return new DraftCNData(key.getChangeNumber(), data.getData()).getRecord();
227 newCNIndexRecord(ReplicationDraftCNKey key, DatabaseEntry data) argument
/forgerock/opendj2/src/server/org/opends/server/types/
H A DCryptoManager.java92 * provided data, using the preferred digest algorithm.
94 * @param data The data to be digested.
101 byte[] digest(byte[] data) argument
106 * provided data, using the requested digest algorithm.
110 * @param data The data to be digested.
117 byte[] digest(String digestAlgorithm, byte[] data) argument
122 * data read from the provided input stream, using the preferred
126 * @param inputStream The input stream from which the data i
234 encrypt(byte[] data) argument
259 encrypt(String cipherTransformation, int keyLengthBits, byte[] data) argument
320 decrypt(byte[] data) argument
[all...]
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/installer/ui/
H A DRemoteReplicationPortsPanel.java62 * This class is used to provide a data model for the list of servers for which
222 public void beginDisplay(UserData data) argument
225 data.getRemoteWithNoReplicationPort().keySet());
227 data.getReplicationOptions().getAuthenticationData();
290 data.getRemoteWithNoReplicationPort().get(server);
H A DSuffixesToReplicatePanel.java68 * This class is used to provide a data model for the list of suffixes that
211 public void beginDisplay(UserData data) argument
214 data.getSuffixesToReplicateOptions().getAvailableSuffixes());
217 data.getReplicationOptions().getAuthenticationData();
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DDatabaseContainer.java168 * @param data The record value.
173 DatabaseEntry data)
176 OperationStatus status = database.put(txn, key, data);
180 txn, key, data);
190 * @param data The record value returned as output. Its byte array does not
197 DatabaseEntry key, DatabaseEntry data,
201 OperationStatus status = database.get(txn, key, data, lockMode);
205 data);
215 * @param data The record value.
220 DatabaseEntry key, DatabaseEntry data)
172 put(Transaction txn, DatabaseEntry key, DatabaseEntry data) argument
196 read(Transaction txn, DatabaseEntry key, DatabaseEntry data, LockMode lockMode) argument
219 insert(Transaction txn, DatabaseEntry key, DatabaseEntry data) argument
[all...]
H A DID2Entry.java245 * @param dataConfig The desired compression and encryption options for data
291 * the data bytes.
308 * @throws ASN1Exception If the data is not in the expected ASN.1 encoding
310 * @throws LDAPException If the data is not in the expected ASN.1 encoding
313 * compressed data.
377 DatabaseEntry data = codec.encodeInternal(entry, dataConfig);
378 OperationStatus status = insert(txn, key, data);
405 DatabaseEntry data = codec.encodeInternal(entry, dataConfig);
406 OperationStatus status = put(txn, key, data);
420 * @param data Th
424 put(Transaction txn, DatabaseEntry key, DatabaseEntry data) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/protocol/
H A DMonitorMsg.java68 * Data structure to manage the state and the approximation of the data of the
87 // The data related to the LDAP servers connected to this RS
90 // The data related to the RS servers connected to this RS
95 SubTopoMonitorData data = new SubTopoMonitorData(); field in class:MonitorMsg
115 data.replServerDbState = state;
129 if (data.ldapStates == null)
131 data.ldapStates = new HashMap<Integer, ServerData>();
133 if (data.rsStates == null)
135 data.rsStates = new HashMap<Integer, ServerData>();
141 data
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DCryptoManager.java93 * provided data, using the preferred digest algorithm.
95 * @param data The data to be digested.
102 byte[] digest(byte[] data) argument
107 * provided data, using the requested digest algorithm.
111 * @param data The data to be digested.
118 byte[] digest(String digestAlgorithm, byte[] data) argument
123 * data read from the provided input stream, using the preferred
127 * @param inputStream The input stream from which the data i
235 encrypt(byte[] data) argument
260 encrypt(String cipherTransformation, int keyLengthBits, byte[] data) argument
321 decrypt(byte[] data) argument
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DAbstractIndexTableModel.java49 private Set<AbstractIndexDescriptor> data = field in class:AbstractIndexTableModel
68 * Sets the data for this table model.
69 * @param newData the data for this table model.
76 data.clear();
77 data.addAll(newData);
218 * Updates the array data. This includes resorting it.
224 sortedSet.addAll(data);
H A DConnectionHandlerTableModel.java47 private Set<ConnectionHandlerDescriptor> data = field in class:ConnectionHandlerTableModel
89 * Sets the data for this table model.
90 * @param newData the data for this table model.
94 if (!newData.equals(data))
96 data.clear();
97 data.addAll(newData);
317 sortedSet.addAll(data);
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DAbstractIndexTableModel.java48 private Set<AbstractIndexDescriptor> data = field in class:AbstractIndexTableModel
67 * Sets the data for this table model.
68 * @param newData the data for this table model.
75 data.clear();
76 data.addAll(newData);
217 * Updates the array data. This includes resorting it.
223 sortedSet.addAll(data);
H A DConnectionHandlerTableModel.java46 private Set<ConnectionHandlerDescriptor> data = field in class:ConnectionHandlerTableModel
88 * Sets the data for this table model.
89 * @param newData the data for this table model.
93 if (!newData.equals(data))
95 data.clear();
96 data.addAll(newData);
316 sortedSet.addAll(data);
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DAbstractIndexTableModel.java49 private Set<AbstractIndexDescriptor> data = field in class:AbstractIndexTableModel
68 * Sets the data for this table model.
69 * @param newData the data for this table model.
76 data.clear();
77 data.addAll(newData);
218 * Updates the array data. This includes resorting it.
224 sortedSet.addAll(data);
H A DConnectionHandlerTableModel.java47 private Set<ConnectionHandlerDescriptor> data = field in class:ConnectionHandlerTableModel
89 * Sets the data for this table model.
90 * @param newData the data for this table model.
94 if (!newData.equals(data))
96 data.clear();
97 data.addAll(newData);
317 sortedSet.addAll(data);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/protocol/
H A DMonitorMsg.java57 * of the data of the first missing change for each LDAP server
75 // The data related to the LDAP servers connected to this RS
78 // The data related to the RS servers connected to this RS
83 SubTopoMonitorData data = new SubTopoMonitorData(); field in class:MonitorMsg
120 data.replServerDbState = state;
134 if (data.ldapStates == null)
136 data.ldapStates = new HashMap<Integer, ServerData>();
138 if (data.rsStates == null)
140 data.rsStates = new HashMap<Integer, ServerData>();
146 data
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DCryptoManager.java93 * provided data, using the preferred digest algorithm.
95 * @param data The data to be digested.
102 byte[] digest(byte[] data) argument
107 * provided data, using the requested digest algorithm.
111 * @param data The data to be digested.
118 byte[] digest(String digestAlgorithm, byte[] data) argument
123 * data read from the provided input stream, using the preferred
127 * @param inputStream The input stream from which the data i
235 encrypt(byte[] data) argument
260 encrypt(String cipherTransformation, int keyLengthBits, byte[] data) argument
321 decrypt(byte[] data) argument
[all...]
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/installer/ui/
H A DRemoteReplicationPortsPanel.java61 * This class is used to provide a data model for the list of servers for which
221 public void beginDisplay(UserData data) argument
224 data.getRemoteWithNoReplicationPort().keySet());
226 data.getReplicationOptions().getAuthenticationData();
289 data.getRemoteWithNoReplicationPort().get(server);
H A DSuffixesToReplicatePanel.java66 * This class is used to provide a data model for the list of suffixes that
209 public void beginDisplay(UserData data) argument
212 data.getSuffixesToReplicateOptions().getAvailableSuffixes());
215 data.getReplicationOptions().getAuthenticationData();
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DDatabaseContainer.java167 * @param data The record value.
172 DatabaseEntry data)
175 OperationStatus status = database.put(txn, key, data);
179 txn, key, data);
189 * @param data The record value returned as output. Its byte array does not
196 DatabaseEntry key, DatabaseEntry data,
200 OperationStatus status = database.get(txn, key, data, lockMode);
204 data);
214 * @param data The record value.
219 DatabaseEntry key, DatabaseEntry data)
171 put(Transaction txn, DatabaseEntry key, DatabaseEntry data) argument
195 read(Transaction txn, DatabaseEntry key, DatabaseEntry data, LockMode lockMode) argument
218 insert(Transaction txn, DatabaseEntry key, DatabaseEntry data) argument
[all...]
H A DID2Entry.java244 * @param dataConfig The desired compression and encryption options for data
290 * the data bytes.
307 * @throws ASN1Exception If the data is not in the expected ASN.1 encoding
309 * @throws LDAPException If the data is not in the expected ASN.1 encoding
312 * compressed data.
376 DatabaseEntry data = codec.encodeInternal(entry, dataConfig);
377 OperationStatus status = insert(txn, key, data);
404 DatabaseEntry data = codec.encodeInternal(entry, dataConfig);
405 OperationStatus status = put(txn, key, data);
419 * @param data Th
423 put(Transaction txn, DatabaseEntry key, DatabaseEntry data) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/protocol/
H A DMonitorMsg.java63 * Data structure to manage the state and the approximation of the data of the
81 /** The data related to the LDAP servers connected to this RS. */
84 /** The data related to the RS servers connected to this RS. */
89 private final SubTopoMonitorData data = new SubTopoMonitorData(); field in class:MonitorMsg
109 data.replServerDbState = state;
128 data.ldapStates.put(serverId, sd);
132 data.rsStates.put(serverId, sd);
143 return data.ldapStates.get(serverId).state;
153 return data.rsStates.get(serverId).state;
164 return data
311 append(final ByteArrayBuilder builder, int data, short protocolVersion) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/server/changelog/je/
H A DDraftCNDB.java95 DatabaseEntry data = new DraftCNData(changeNumber, record.getBaseDN().toNormalizedString(), record.getCSN());
109 db.put(txn, key, data);
228 DatabaseEntry data) throws ChangelogException
230 return new DraftCNData(key.getChangeNumber(), data.getData()).getRecord();
227 newCNIndexRecord(ReplicationDraftCNKey key, DatabaseEntry data) argument
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DCryptoManager.java92 * provided data, using the preferred digest algorithm.
94 * @param data The data to be digested.
101 byte[] digest(byte[] data) argument
106 * provided data, using the requested digest algorithm.
110 * @param data The data to be digested.
117 byte[] digest(String digestAlgorithm, byte[] data) argument
122 * data read from the provided input stream, using the preferred
126 * @param inputStream The input stream from which the data i
234 encrypt(byte[] data) argument
259 encrypt(String cipherTransformation, int keyLengthBits, byte[] data) argument
320 decrypt(byte[] data) argument
[all...]
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/installer/ui/
H A DRemoteReplicationPortsPanel.java62 * This class is used to provide a data model for the list of servers for which
222 public void beginDisplay(UserData data) argument
225 data.getRemoteWithNoReplicationPort().keySet());
227 data.getReplicationOptions().getAuthenticationData();
290 data.getRemoteWithNoReplicationPort().get(server);

Completed in 90 milliseconds

1234567891011>>