Package org.forgerock.am.iot
Class IotSecretIdProvider
- java.lang.Object
-
- org.forgerock.am.iot.IotSecretIdProvider
-
- All Implemented Interfaces:
SecretIdProvider
public class IotSecretIdProvider extends Object implements SecretIdProvider
This provider exposes the secret IDs used by the IoT component to theSecretIdRegistry
.
-
-
Constructor Summary
Constructors Constructor Description IotSecretIdProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.collect.Multimap<String,String>
getGlobalSingletonSecretIds()
Returns the secret IDs used by global singleton services.com.google.common.collect.Multimap<String,String>
getRealmSingletonSecretIds()
Returns the secret IDs used by realm level singleton services.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.forgerock.openam.secrets.SecretIdProvider
getGlobalMultiInstanceSecretIds, getRealmMultiInstanceSecretIds
-
-
-
-
Method Detail
-
getGlobalSingletonSecretIds
public com.google.common.collect.Multimap<String,String> getGlobalSingletonSecretIds()
Description copied from interface:SecretIdProvider
Returns the secret IDs used by global singleton services. The key in the map is the name of the component that uses the secret ID, and the values are the secret IDs used by the component.- Specified by:
getGlobalSingletonSecretIds
in interfaceSecretIdProvider
- Returns:
- A multimap containing the secret IDs used per component.
-
getRealmSingletonSecretIds
public com.google.common.collect.Multimap<String,String> getRealmSingletonSecretIds()
Description copied from interface:SecretIdProvider
Returns the secret IDs used by realm level singleton services. The key in the map is the name of the component that uses the secret ID, and the values are the secret IDs used by the component.- Specified by:
getRealmSingletonSecretIds
in interfaceSecretIdProvider
- Returns:
- A multimap containing the secret IDs used per component.
-
-