/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/key/ |
H A D | package-info.java | 33 package com.sun.identity.saml2.key;
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/key/ |
H A D | package-info.java | 33 package com.sun.identity.saml2.key;
|
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/ |
H A D | ScheduleableGroupAction.java | 40 * 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 D | ScheduleableGroupAction.java | 40 * 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 D | IndexMod.java | 31 * 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 D | IndexMod.java | 31 * 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 D | IndexMod.java | 31 * 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 D | SystemPropertiesWrapper.java | 26 * @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 D | ResBundleUtils.java | 58 * @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 D | ResBundleUtils.java | 52 * @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 D | DefaultSessionPropertyUpgrader.java | 38 public boolean shouldCopy(String key) { argument
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/ |
H A D | SAML2Store.java | 34 * 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 D | KeyUtilTest.java | 17 package com.sun.identity.saml2.key;
|
/forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/ |
H A D | HandlerProvider.java | 37 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 D | ProcessStoreImpl.java | 29 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 D | UmaPolicyComparator.java | 26 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 D | PropertyAccessor.java | 33 * 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 D | SystemPropertyAccessor.java | 40 * 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 D | ProcessStoreImpl.java | 29 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 D | BundleUtils.java | 30 * @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 D | ResBundleUtils.java | 58 * @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 D | ResBundleUtils.java | 52 * @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 D | SessionUtilsWrapper.java | 46 * 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 D | DefaultSessionPropertyUpgrader.java | 38 public boolean shouldCopy(String key) { argument
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/ |
H A D | SAML2Store.java | 34 * 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);
|