Searched defs:key (Results 1 - 25 of 877) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/key/
H A Dpackage-info.java33 package com.sun.identity.saml2.key;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/key/
H A Dpackage-info.java33 package com.sun.identity.saml2.key;
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DScheduleableGroupAction.java40 * The function to run on key object when there is time.
43 public void doGroupAction(Object key); argument
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DScheduleableGroupAction.java40 * The function to run on key object when there is time.
43 public void doGroupAction(Object key); argument
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DIndexMod.java31 * delete an entry ID, for a given key.
36 * The index key to be modified.
38 byte[] key; field in class:IndexMod
52 * @param key The index key to be modified.
57 public IndexMod(byte[] key, EntryID value, boolean isDelete) argument
59 this.key = key;
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DIndexMod.java31 * delete an entry ID, for a given key.
36 * The index key to be modified.
38 byte[] key; field in class:IndexMod
52 * @param key The index key to be modified.
57 public IndexMod(byte[] key, EntryID value, boolean isDelete) argument
59 this.key = key;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DIndexMod.java31 * delete an entry ID, for a given key.
36 * The index key to be modified.
38 byte[] key; field in class:IndexMod
52 * @param key The index key to be modified.
57 public IndexMod(byte[] key, EntryID value, boolean isDelete) argument
59 this.key = key;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DSystemPropertiesWrapper.java26 * @param key System Properties key to retrieve the value for.
30 public int getAsInt(String key, int def) { argument
31 return SystemProperties.getAsInt(key, def);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/delegation/
H A DResBundleUtils.java58 * @param key to localized string
59 * @return localized string or <code>key</code> if localized string is
62 public static String getString(String key) { argument
63 String localizedStr = Locale.getString(bundle, key);
65 localizedStr = key;
73 * @param key to localized string
76 * @return localized string or <code>key</code> if localized string is
80 public static String getString(String key, Object[] params) { argument
81 String localizedStr = Locale.getString(bundle, key, params);
83 localizedStr = key;
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DResBundleUtils.java52 * @param key key to look up the localized message for
53 * @return localized string or <code>key</code> if localized string is
56 public static String getString(String key) { argument
57 String localizedStr = Locale.getString(bundle, key);
59 localizedStr = key;
67 * @param key key to look up the localized message for
70 * @return localized string or <code>key</code> if localized string is
73 public static String getString(String key, Objec argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/authentication/service/
H A DDefaultSessionPropertyUpgrader.java38 public boolean shouldCopy(String key) { argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/
H A DSAML2Store.java34 * Statically stores Strings mapped to a key.
35 * @param key Key under which to store the String.
36 * @param value Value associated with the key.
38 public static void saveTokenWithKey(String key, Object value) { argument
39 localCache.put(key, value);
44 * @param key Key indicating the value to retrieve from the map.
46 public static Object getTokenFromStore(String key) { argument
47 return localCache.getIfPresent(key);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml2/key/
H A DKeyUtilTest.java17 package com.sun.identity.saml2.key;
/forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/
H A DHandlerProvider.java37 private final Key<? extends Handler> key; field in class:HandlerProvider
40 HandlerProvider(Key<? extends Handler> key) { argument
41 Reject.ifNull(key);
42 this.key = key;
48 handler = InjectorHolder.getInstance(key);
/forgerock/openam-v13/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/
H A DProcessStoreImpl.java29 public void add(String key, JsonValue state) { argument
34 public JsonValue remove(String key) { argument
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaPolicyComparator.java26 private final SortKey key; field in class:UmaPolicyComparator
28 public UmaPolicyComparator(SortKey key) { argument
29 this.key = key;
35 if (new JsonPointer("/policyId").equals(key.getField())) {
37 } else if (new JsonPointer("/name").equals(key.getField())) {
40 if (!key.isAscendingOrder()) {
/forgerock/openidm-v4/openidm-system/src/main/java/org/forgerock/openidm/core/
H A DPropertyAccessor.java33 * Returns the value of the specified property. If the key is not found in
37 * @param key
51 <T> T getProperty(String key, T defaultValue, Class<T> expected); argument
H A DSystemPropertyAccessor.java40 * Returns the value of the specified system property. If the key is not
44 * @param key
56 public <T> T getProperty(String key, T defaultValue, Class<T> expected) { argument
58 if (null != key
60 value = (T) System.getProperty(key, (String) defaultValue);
62 return null != value ? value : (null != delegate) ? delegate.getProperty(key, defaultValue,
/forgerock/openam/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/
H A DProcessStoreImpl.java29 public void add(String key, JsonValue state) { argument
34 public JsonValue remove(String key) { argument
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DBundleUtils.java30 * @param key The key.
32 * @return The bundle's value for the given key, or {@code defaultValue} if there is no value.
34 public static String getStringWithDefault(ResourceBundle bundle, String key, String defaultValue) { argument
36 return bundle.getString(key);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/delegation/
H A DResBundleUtils.java58 * @param key to localized string
59 * @return localized string or <code>key</code> if localized string is
62 public static String getString(String key) { argument
63 String localizedStr = Locale.getString(bundle, key);
65 localizedStr = key;
73 * @param key to localized string
76 * @return localized string or <code>key</code> if localized string is
80 public static String getString(String key, Object[] params) { argument
81 String localizedStr = Locale.getString(bundle, key, params);
83 localizedStr = key;
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DResBundleUtils.java52 * @param key key to look up the localized message for
53 * @return localized string or <code>key</code> if localized string is
56 public static String getString(String key) { argument
57 String localizedStr = Locale.getString(bundle, key);
59 localizedStr = key;
67 * @param key key to look up the localized message for
70 * @return localized string or <code>key</code> if localized string is
73 public static String getString(String key, Objec argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/session/util/
H A DSessionUtilsWrapper.java46 * Alternatively, if {@code key} is not a protected property, then this check passes regardless of what
51 * @param key
56 * if key identifies a protected property and {@code clientToken} is not a valid admin {@code SSOToken}.
58 public void checkPermissionToSetProperty(SSOToken clientToken, String key, String value) throws SessionException { argument
59 SessionUtils.checkPermissionToSetProperty(clientToken, key, value);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/
H A DDefaultSessionPropertyUpgrader.java38 public boolean shouldCopy(String key) { argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/
H A DSAML2Store.java34 * Statically stores Strings mapped to a key.
35 * @param key Key under which to store the String.
36 * @param value Value associated with the key.
38 public static void saveTokenWithKey(String key, Object value) { argument
39 localCache.put(key, value);
44 * @param key Key indicating the value to retrieve from the map.
46 public static Object getTokenFromStore(String key) { argument
47 return localCache.getIfPresent(key);

Completed in 149 milliseconds

1234567891011>>