Searched defs:key (Results 251 - 275 of 877) sorted by relevance

<<11121314151617181920>>

/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DDN2ID.java38 * for each entry. The key is the normalized entry DN and the value
49 * The key comparator used for the DN database.
106 * @param dn The entry DN, which is the key to the record.
108 * @return true if the record was inserted, false if a record with that key
116 DatabaseEntry key = new DatabaseEntry(
122 status = insert(txn, key, data);
131 * Write a record to the DN database. If a record with the given key already
136 * @param dn The entry DN, which is the key to the record.
145 DatabaseEntry key = new DatabaseEntry(
150 status = put(txn, key, dat
169 put(Transaction txn, DatabaseEntry key, DatabaseEntry data) argument
204 delete(Transaction txn, DatabaseEntry key) argument
240 read(Transaction txn, DatabaseEntry key, DatabaseEntry data, LockMode lockMode) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DManagedObjectDefinitionI18NResource.java123 * key in the default locale.
127 * @param key
128 * The resource key.
130 * specified key in the default locale.
132 * If the key was not found.
137 public Message getMessage(AbstractManagedObjectDefinition<?, ?> d, String key) argument
139 return getMessage(d, key, Locale.getDefault(), (String[]) null);
146 * key and locale.
150 * @param key
151 * The resource key
162 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, Locale locale) argument
191 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, Locale locale, String... args) argument
226 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, String... args) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DDN2ID.java39 * for each entry. The key is the normalized entry DN and the value
50 * The key comparator used for the DN database.
107 * @param dn The entry DN, which is the key to the record.
109 * @return true if the record was inserted, false if a record with that key
117 DatabaseEntry key = new DatabaseEntry(
123 status = insert(txn, key, data);
132 * Write a record to the DN database. If a record with the given key already
137 * @param dn The entry DN, which is the key to the record.
146 DatabaseEntry key = new DatabaseEntry(
151 status = put(txn, key, dat
170 put(Transaction txn, DatabaseEntry key, DatabaseEntry data) argument
205 delete(Transaction txn, DatabaseEntry key) argument
241 read(Transaction txn, DatabaseEntry key, DatabaseEntry data, LockMode lockMode) argument
[all...]
H A DLongs.java146 * @param key The element to search for.
149 private static int binarySearch(long[] a, int count, long key) argument
159 if (midVal < key)
161 else if (midVal > key)
164 return mid; // key found
166 return -(low + 1); // key not found.
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/common/
H A DCacheBlock.java112 private static int getPropertyIntValue(String key, int defaultValue) { argument
114 String valueStr = SystemProperties.get(key);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/
H A DLegacySessionIDExtensions.java93 String key = decoder.decode(ByteBuffer.wrap(bytes, i, length)).toString();
99 extensionsMap.put(key, val);
122 * Storage key is used primarily in Internal Request Routing.
131 * @param key Non null key
135 public String get(String key) { argument
136 return extensionsMap.get(key);
140 * @param key Key to store in extensions map.
144 public void add(String key, String value) { argument
145 extensionsMap.put(key, valu
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthServiceListener.java81 Map retVal = serviceAttributeCache.get(key(serviceName, orgDN));
87 private static String key(String serviceName, String orgDN) { method in class:AuthServiceListener
102 serviceAttributeCache.put(key(serviceName, orgDN), serviceAttributes);
135 serviceAttributeCache.remove(key(componentName, orgName));
H A DStreamSubstituter.java51 // cache for files, key is the file name, value is the StringBuffer
59 * &lt;subst data="key">otherwise&lt;/subst>
61 * will be replaced with the value defined for "key".
62 * If the key has not been defined,
64 * More than one <code>date="key"</code> may be specified in the same
67 * @param key file name used as key for cache
70 public void define(String key, String val) { argument
71 ht.put(key, val);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DServerPropertyValidator.java69 String key = (String)e.nextElement();
70 String value = rb.getString(key);
72 if (key.endsWith(".*")) {
73 arrayKeys.add(key.substring(0, key.length() -1));
75 mapKeys.add(key);
77 integerKeys.add(key);
79 floatKeys.add(key);
87 keyToPossibleValues.put(key, list);
89 keyToPossibleValues.put(key, Collection
179 validateMap(String key, String value) argument
214 validateNumber(String key, String value) argument
239 validate(String key, String value) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/config/wizard/
H A DStep2.java233 * used to add the key to the page and to the session so it can
236 private void add(String key, String value) { argument
237 addModel(key, value);
238 getContext().setSessionAttribute(key, value);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/delegation/
H A DSMServiceListener.java177 public boolean addElement(Object key) { argument
181 public boolean removeElement(Object key) { argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/password/ui/model/
H A DPWResetAdminLog.java95 * The key to the message to be written is passed in and will be
98 * @param key to look up in the properties file
100 public void doLogKey(String key) { argument
102 doLog(Locale.getString(rb, key, PWResetModelImpl.debug));
108 * The message to be written is built from a key and a message
109 * The key is used to access the properties file.
111 * @param key to look up in the properties file
112 * @param message to write with the key
114 public void doLog(String key, String message) { argument
116 doLog(Locale.getString(rb, key, PWResetModelImp
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/
H A DPrivilegeEvaluatorContext.java113 * @param key The key of the attribute
116 public void setAttribute(String key, Object value) { argument
117 attributes.put(key, value);
123 * @param key The key of the attribute
126 public Object getAttribute(String key) { argument
127 return attributes.get(key);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/
H A DManagedObjectDefinitionI18NResource.java118 * key in the default locale.
122 * @param key
123 * The resource key.
125 * specified key in the default locale.
127 * If the key was not found.
132 public LocalizableMessage getMessage(AbstractManagedObjectDefinition<?, ?> d, String key) argument
134 return getMessage(d, key, Locale.getDefault(), (String[]) null);
141 * key and locale.
145 * @param key
146 * The resource key
157 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, Locale locale) argument
186 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, Locale locale, String... args) argument
221 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, String... args) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DAbstractTree.java100 public String keyToString(ByteString key) argument
102 return key.toString();
112 public ByteString generateKey(String key) argument
114 return ByteString.valueOfUtf8(key);
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/spi/handlers/amhandler/
H A DContextHolderCache.java68 * Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
70 * @param key
71 * - the key whose associated value is to be returned.
72 * @return the cached value associated with the specified key, or null if no cache entry is held with the key.
74 public synchronized ContextHolder get(String key) { argument
75 return cache.get(key);
81 * @param key
82 * - the key whos
85 remove(String key) argument
119 put(String key, ContextHolder contextHolder) argument
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DCaseInsensitiveHashMap.java38 * A case insensitive hash map with case preservation. If key is a String, a
39 * case insensitive hash code is used for hashing but original case of the key
60 public boolean containsKey(Object key) { argument
62 if (key instanceof String) {
63 CaseInsensitiveKey ciKey = new CaseInsensitiveKey((String) key);
66 retval = super.containsKey(key);
71 public V get(Object key) { argument
73 if (key instanceof String) {
74 CaseInsensitiveKey ciKey = new CaseInsensitiveKey((String) key);
77 retval = super.get(key);
107 put(K key, V value) argument
127 remove(Object key) argument
[all...]
H A DCaseInsensitiveProperties.java37 * A case insensitive Properties with case preservation. If key is a String, a
38 * case insensitive hash code is used for hashing but original case of the key
80 public String getProperty(String key) { argument
81 return (String) super.get(new CaseInsensitiveKey(key));
84 public Object setProperty(String key, String value) { argument
85 return super.put(new CaseInsensitiveKey(key), value);
88 public boolean containsKey(Object key) { argument
90 if (key instanceof String) {
91 CaseInsensitiveKey ciKey = new CaseInsensitiveKey((String) key);
94 retval = super.containsKey(key);
99 get(Object key) argument
140 put(Object key, Object value) argument
151 remove(Object key) argument
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/configuration/
H A DSystemPropertiesManager.java133 * @param key Key of the property.
136 public static String get(String key) { argument
137 return (systemProperties != null) ? systemProperties.get(key) : null;
143 * @param key Key of the property.
147 public static String get(String key, String defaultValue) { argument
148 String value = get(key);
157 * @param key the key whose value one is looking for.
158 * @return the boolean value if the key exists; otherwise returns false
160 public static boolean getAsBoolean(String key) { argument
172 getAsBoolean(String key, boolean defaultValue) argument
189 getAsInt(String key, int defaultValue) argument
[all...]
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-plugins/src/main/java/com/sun/identity/diagnostic/plugin/services/common/
H A DCryptUtils.java100 final char[] key
105 buffer[0] = key[0];
106 buffer[1] = key[1];
108 buffer[2] = key[2];
109 buffer[3] = key[3];
111 buffer[4] = key[4];
112 buffer[5] = key[5];
113 buffer[6] = key[6];
115 c.key(buffer);
133 public void key(cha argument
[all...]
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-plugins/src/main/java/com/sun/identity/diagnostic/plugin/services/connect/
H A DDSConnectValidation.java162 private String getPropertyStringValue(Map configParams, String key) { argument
164 Set valueSet = (Set) configParams.get(key);
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DAuditLogFileNameTask.java110 private void validateKey(String key, String argument) argument
112 if (key == null || key.trim().length() == 0) {
113 Debug.log("AuditLogFileNameTask: No key specified for argument: "
115 throw new IllegalArgumentException(argument + "=" + key);
119 private String getRequiredValue(IStateAccess state, String key, argument
121 validateKey(key, argument);
122 String result = (String) state.get(key);
124 Debug.log("AuditLogFileNameTask: No value specified for key: "
125 + key
[all...]
H A DInstFinderInteractionsRunner.java117 public void storeNonPersistentKeys(String key, int index) { argument
119 getNonPersistentKeys().add(key);
H A DMigrateConfigurePropertiesTask.java235 String key = null; field in class:MigrateConfigurePropertiesTask.KeyValue
244 key = lineData.substring(0, index).trim();
252 return key;
255 public void setKey(String key) { argument
256 this.key = key;
276 parameter = key;
278 if (key != null && key.length() > 0) {
279 if (key
[all...]
H A DStringValidator.java101 public ValidationResult isKeyValid(String key, Map props, argument
108 if ((key != null) && (key.length() > 0)) {
112 Debug.log("StringValidator : key min length = " + minLen);
113 int passLen = key.length();
117 Debug.log("StringValidator : Length of key is "
126 Debug.log("StringValidator : Failed to read key with ex :", ex);
133 Debug.log("StringValidator : key is valid");

Completed in 154 milliseconds

<<11121314151617181920>>