Searched defs:key (Results 226 - 250 of 877) sorted by relevance

1234567891011>>

/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/
H A DLogRecord.java158 * Adds to the log information map, the field key and its corresponding
161 * @param key The key which will be used by the formatter to determine if
167 public void addLogInfo(String key,Object value) { argument
168 logInfoMap.put(key,value);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/
H A DHttpServletRequestWrapper.java107 * @param key Key to header value.
110 public String getHeader(String key) { argument
111 return (req != null) ? req.getHeader(key) : null;
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/
H A DSessionPropertyUpgrader.java58 String key = allProperties.nextElement();
59 String value = (String) oldSession.getProperty(key);
60 if (shouldCopy(key)) {
62 updateProperty(newSession, key, value);
64 updateProperty(oldSession, key, value);
80 for (String key : allProperties) {
81 String value = oldSession.getProperty(key);
82 if (shouldCopy(key)) {
84 newSession.putProperty(key, value);
112 * @param key Th
116 shouldCopy(String key) argument
[all...]
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/utils/
H A DSessionInfoFactoryTest.java116 private static String getLocalisedMessage(String key) { argument
117 return SessionBundle.getString(key);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DRestAuthHttpRequestWrapper.java111 * @param key The parameter key.
114 void addParameter(String key, String value) { argument
115 parameterMap.put(key, new String[]{value});
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/configuration/
H A DFedSystemProperties.java85 * @param key Key to the properties.
88 public String get(String key) { argument
91 AttributeStruct ast = attributeMap.get(key);
93 value = PropertiesFinder.getProperty(key, ast);
96 if (key.startsWith(METADATA_SIGNING_KEY)) {
97 //this will be true for both the key alias and the password
98 int idx = key.indexOf('[');
99 String attribute = key.substring(0, idx);
100 String realm = key.substring(idx + 1, key
120 getPropertyValue(String key) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/
H A DAuthnSvcUtils.java80 * @param key a key to a resource bundle.
83 public static String getString(String key) { argument
84 return bundle.getString(key);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/key/
H A DKeyUtil.java30 package com.sun.identity.wsfederation.key;
52 * the hosting entity's signing key and decryption key, and
53 * to obtain a partner entity's signature verification key
60 // key is EntityID|Role
64 // key is EntityID|Role
81 " Couldn't instantiate the key provider instance.",
125 * Returns the host entity's decryption key.
/forgerock/openam/openam-http/src/main/java/org/forgerock/openam/http/
H A DGuiceHandler.java43 private final Key<? extends Handler> key; field in class:GuiceHandler
48 GuiceHandler(Key<? extends Handler> key) { argument
49 Reject.ifNull(key);
50 this.key = key;
51 this.isDescribable = Describable.class.isAssignableFrom(key.getTypeLiteral().getRawType());
57 handler = InjectorHolder.getInstance(key);
92 describable = (Describable<Swagger, Request>) InjectorHolder.getInstance(key);
H A DHttpRoute.java109 * @param key The Guice binding {@link Key}.
112 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Key<? extends Handler> key) { argument
115 if (DescribableHandler.class.isAssignableFrom(key.getTypeLiteral().getRawType())) {
119 return new GuiceHandler(key);
128 return new GuiceHandler(key);
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/translate/
H A DTokenTransformImpl.java48 private final String key; field in class:TokenTransformImpl
61 key = this.inputTokenType.getId() + this.outputTokenType.getId();
103 return key.equals(otherTransform.key);
110 return key.hashCode();
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DPropertyStore.java94 protected String get(String key) { argument
95 return getProperties().getProperty(key);
106 protected void set(String key, String value) { argument
107 getProperties().setProperty(key, value);
H A DSkipIfInfo.java39 public SkipIfInfo(String key, ArrayList values, boolean ignoreCase) { argument
40 setKey(key);
46 return key;
57 private void setKey(String key) { argument
58 this.key = key;
69 private String key; field in class:SkipIfInfo
H A DTransientStateAccess.java53 public Object get(String key) { argument
54 return getData().get(key);
57 public void put(String key, Object value) { argument
58 getData().put(key, value);
61 public void remove(String key) { argument
62 getData().remove(key);
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/
H A DSubSchemaModificationWrapper.java52 * @param key The name of the sub schema
55 public void put(String key, NewSubSchemaWrapper value) { argument
56 newSubSchemas.put(key, value);
H A DUpgradeHttpServletRequest.java100 public String getHeader(String key) { argument
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DManagedObjectDefinitionI18NResource.java122 * key in the default locale.
126 * @param key
127 * The resource key.
129 * specified key in the default locale.
131 * If the key was not found.
136 public Message getMessage(AbstractManagedObjectDefinition<?, ?> d, String key) argument
138 return getMessage(d, key, Locale.getDefault(), (String[]) null);
145 * key and locale.
149 * @param key
150 * The resource key
161 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, Locale locale) argument
190 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, Locale locale, String... args) argument
225 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, String... args) argument
[all...]
/forgerock/opendj2/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/opendj-b2.6/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/opendj-b2.6/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/opendj2.6.2/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.6.2/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/opendj2-hg/src/server/org/opends/server/admin/
H A DManagedObjectDefinitionI18NResource.java122 * key in the default locale.
126 * @param key
127 * The resource key.
129 * specified key in the default locale.
131 * If the key was not found.
136 public Message getMessage(AbstractManagedObjectDefinition<?, ?> d, String key) argument
138 return getMessage(d, key, Locale.getDefault(), (String[]) null);
145 * key and locale.
149 * @param key
150 * The resource key
161 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, Locale locale) argument
190 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, Locale locale, String... args) argument
225 getMessage(AbstractManagedObjectDefinition<?, ?> d, String key, String... args) argument
[all...]

Completed in 243 milliseconds

1234567891011>>