Searched defs:key (Results 126 - 150 of 877) sorted by relevance

1234567891011>>

/forgerock/openam/openam-core/src/main/java/com/iplanet/services/util/
H A DCreateXmlTree.java46 public static void createSingleNode(String key, String val, argument
50 Element item = doc.createElement(key);
58 public static String createSingleNode(String key, String val) throws ParserConfigurationException { argument
61 Element item = doc.createElement(key);
70 public static void createMultiNodes(String key, Enumeration e, argument
73 createSingleNode(key, (String) e.nextElement(), xml);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/config/wizard/
H A DStep7.java148 protected void add(String key, Object value) { argument
150 addModel(key, value);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCacheTaboo.java60 public static boolean isTaboo(String cache, String key) { argument
68 return set.contains(key);
74 public static void taboo(String cache, String key) { argument
83 set.add(key);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/
H A DIdRepoBundle.java51 public static String getString(String key) { argument
52 return profileBundle.getString(key);
55 public static String getString(String key, Object[] params) { argument
56 return (MessageFormat.format(profileBundle.getString(key), params));
59 public static String getString(String key, Object[] params, String locale) { argument
61 return (MessageFormat.format(rb.getString(key), params));
64 public static String getString(String key, String locale) { argument
66 return getString(key);
68 return getBundleFromHash(locale).getString(key);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/
H A DILogRecord.java44 * Adds to the log information map, the field key and its corresponding
47 * @param key The key which will be used by the formatter to determine if
52 void addLogInfo(String key, Object value); argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/
H A DIHttpServletRequest.java68 * @param key Key to header value.
71 String getHeader(String key); argument
H A DSystemStartupInjectorHolder.java93 * key.</p>
97 * @param key The key that defines the class to get.
98 * @param <T> The type of class defined by the key.
99 * @return A non-null instance of the class defined by the key.
101 <T> T getInstance(Key<T> key) { argument
102 return injector.getInstance(key);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DPluginInterface.java48 private String key; field in class:PluginInterface
58 key = XMLUtils.getNodeAttributeValue(n, SMSUtils.I18N_KEY);
61 protected PluginInterface(String name, String interfaceClass, String key) { argument
64 this.key = key;
86 * Returns the i18n key that describes the function provided by the plugin
89 * @return i18n index key to the resource bundle
92 return (key);
99 append("\n\tI18N Key: ").append(key);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/utils/
H A DKeyConversion.java32 * Encode the given key to Hexadecimal.
34 * @param key Non null nor empty key to encode to hexadecimal.
35 * @return The non null encoded key.
37 public String encodeKey(final String key) { argument
38 if (StringUtils.isEmpty(key)) {
42 return Hex.encodeHexString(key.getBytes("UTF-8"));
49 * Decode the given hexadecimal key.
51 * @param hexEncodedKey Non null nor empty key to decode.
52 * @return Non null decoded key
71 encryptKey(SessionID key) argument
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/
H A DSessionProperties.java32 public String getProperty(SSOToken token, String key) throws SSOException { argument
34 SessionUtils.checkPermissionToSetProperty(token, key, null);
37 throw new SSOException("Unable to get requested property: " + key);
39 return token.getProperty(key);
42 public void setProperty(SSOToken token, String key, String value) throws SSOException { argument
45 SessionUtils.checkPermissionToSetProperty(token, key, value);
48 throw new SSOException("Unable to set requested property: " + key);
50 token.setProperty(key, value);
H A DSessionUtilsWrapper.java34 * @param key Property key
36 * @throws SessionException if the key is protected property.
38 public void checkPermissionToSetProperty(SSOToken clientToken, String key, String value) throws SessionException { argument
39 SessionUtils.checkPermissionToSetProperty(clientToken, key, value);
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/
H A DJwtPrincipal.java44 public JsonValue getClaim(String key) { argument
45 return jwt.get(key);
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/utils/indextree/nodecontext/
H A DMapSearchContext.java35 public <T> void add(ContextKey<T> key, T value) { argument
36 contextData.put(key, value);
40 public <T> T get(ContextKey<T> key) { argument
41 // Type safety is enforced by the use of the typed key.
42 return key.getType().cast(contextData.get(key));
46 public boolean has(ContextKey<?> key) { argument
47 return contextData.containsKey(key);
51 public void remove(ContextKey<?> key) { argument
52 contextData.remove(key);
[all...]
H A DSearchContext.java29 * @param key
30 * The key.
36 public <T> void add(ContextKey<T> key, T value); argument
41 * @param key
42 * The key for which to extract data.
45 * @return The value associated with the key.
47 public <T> T get(ContextKey<T> key); argument
50 * Whether the context contains data with the associated with the key.
52 * @param key
53 * The key
56 has(ContextKey<?> key) argument
64 remove(ContextKey<?> key) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Common/
H A DFedletSignedSignature.cs54 /// <param name="key">The encryption key to use.</param>
58 public override AsymmetricSignatureDeformatter CreateDeformatter(AsymmetricAlgorithm key) argument
61 sigProcessor.SetKey(key);
69 /// <param name="key">The encryption key to use.</param>
73 public override AsymmetricSignatureFormatter CreateFormatter(AsymmetricAlgorithm key) argument
77 sigProcessor.SetKey(key);
102 /// <param name="key">The encryption key t
106 CreateDeformatter(AsymmetricAlgorithm key) argument
121 CreateFormatter(AsymmetricAlgorithm key) argument
154 CreateDeformatter(AsymmetricAlgorithm key) argument
170 CreateFormatter(AsymmetricAlgorithm key) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/key/
H A DEncInfo.java30 package com.sun.identity.federation.key;
36 * such as the key-wrapping key, the data encryption algorithm, and
37 * data encryption key strength.
47 * @param wrappingKey Key-wrapping key
49 * @param dataEncStrength Data encryption key size
62 * Returns the key for encrypting the secret key.
78 * Returns the key strength for data encryption.
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/key/
H A DEncInfo.java30 package com.sun.identity.saml2.key;
36 * such as the key-wrapping key, the data encryption algorithm, and
37 * data encryption key strength.
47 * @param wrappingKey Key-wrapping key
49 * @param dataEncStrength Data encryption key size
62 * Returns the key for encrypting the secret key.
78 * Returns the key strength for data encryption.
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/wsfederation/common/
H A DActiveRequestorException.java40 private final String key; field in class:ActiveRequestorException
42 private ActiveRequestorException(QName faultCode, String key, String... args) { argument
43 super(WSFederationConstants.BUNDLE_NAME, key, args);
45 this.key = key;
51 * @param key The localization key to use when constructing the SOAP fault.
55 public static ActiveRequestorException newSenderException(String key, String... args) { argument
56 return new ActiveRequestorException(SOAPConstants.SOAP_SENDER_FAULT, key, args);
62 * @param key Th
66 newReceiverException(String key, String... args) argument
[all...]
/forgerock/openam/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DSystemProperties.java77 * Returns system property of a given key. The method will get the property
81 * @param key the key whose value to be returned.
82 * @return the value if the key exists; otherwise returns <code>null</code>.
84 public static String get(String key) { argument
85 String val = SystemPropertiesManager.get(key);
87 return (String) properties.get(key);
/forgerock/openam/openam-http/src/main/java/org/forgerock/openam/http/annotations/
H A DEndpoints.java96 * @param key The Guice key to use.
99 public static Handler from(Key key) { argument
100 return from(InjectorHolder.getInstance(key));
/forgerock/openam/openam-http/src/test/java/org/forgerock/openam/http/
H A DGuiceHandlerTest.java45 private Key<Handler> key; field in class:GuiceHandlerTest
51 key = Key.get(Handler.class);
57 binder.bind(key).toProvider(new Provider<Handler>() {
68 guiceHandler = new GuiceHandler(key);
/forgerock/openam/openam-sts/openam-publish-sts/src/main/java/org/forgerock/openam/sts/publish/config/
H A DSTSPublishInjectorHolder.java42 * Returns the appropriate instance for the given injection key.
48 * @param key The key that defines the class to get.
49 * @param <T> The type of class defined by the key.
50 * @return An instance of the class defined by the key.
52 public static <T> T getInstance(Key<T> key) { argument
53 return INSTANCE.injector.getInstance(key);
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/config/
H A DRestSTSInjectorHolder.java51 * Returns the appropriate instance for the given injection key.
57 * @param key The key that defines the class to get.
58 * @param <T> The type of class defined by the key.
59 * @return An instance of the class defined by the key.
61 public static <T> T getInstance(Key<T> key) { argument
62 return INSTANCE.injector.getInstance(key);
/forgerock/openam/openam-sts/openam-soap-sts/openam-soap-sts-server/src/main/java/org/forgerock/openam/sts/soap/config/
H A DSoapSTSInjectorHolder.java49 * Returns the appropriate instance for the given injection key.
54 * @param key The key that defines the class to get.
55 * @param <T> The type of class defined by the key.
56 * @return An instance of the class defined by the key.
58 public static <T> T getInstance(Key<T> key) { argument
59 return INSTANCE.injector.getInstance(key);
/forgerock/openam/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/config/
H A DTokenGenerationServiceInjectorHolder.java46 * Returns the appropriate instance for the given injection key.
50 * @param key The key that defines the class to get.
51 * @param <T> The type of class defined by the key.
52 * @return An instance of the class defined by the key.
54 public static <T> T getInstance(Key<T> key) { argument
55 return INSTANCE.injector.getInstance(key);

Completed in 140 milliseconds

1234567891011>>