com.ibm.wsspi.wssecurity.config
Interface TokenGeneratorConfig
-
- All Superinterfaces:
- com.ibm.ws.webservices.wssecurity.config.Configuration
public interface TokenGeneratorConfig extends com.ibm.ws.webservices.wssecurity.config.ConfigurationAn interface for retrievingTokenGeneratorconfiguration data.- See Also:
Configuration
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.StringCONFIG_KEY
-
Method Summary
Methods Modifier and Type Method and Description CallbackHandlerConfiggetCallbackHandler()Gets the configuration of a callback handler.java.util.ListgetCertStores()Gets a list of certificate stores that store only Certificate Revokation Lists (CRLs).TokenGeneratorComponentgetInstance()Gets the instance of token generator.java.util.MapgetProperties()Gets theMapobject which contains name-value pairs.java.security.ProvidergetProvider()Gets the provider.javax.xml.namespace.QNamegetType()Gets the type of the token.java.lang.StringgetUsage()Gets the usage of the generator.booleanisStandAlone()Checks whether the token is used alone.
-
-
-
Field Detail
-
CONFIG_KEY
static final java.lang.String CONFIG_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getInstance
TokenGeneratorComponent getInstance()
Gets the instance of token generator.- Returns:
- The instance of token generator
-
getUsage
java.lang.String getUsage()
Gets the usage of the generator.- Returns:
- The usage of the generator
-
getType
javax.xml.namespace.QName getType()
Gets the type of the token. It is represented as the qualified name, such aswsse:X509v3orwsse:UsernameToken.- Returns:
- The type of the token
-
isStandAlone
boolean isStandAlone()
Checks whether the token is used alone.- Returns:
- True if the token is used alone, otherwise false
-
getProvider
java.security.Provider getProvider()
Gets the provider.- Returns:
- The provider
-
getCertStores
java.util.List getCertStores()
Gets a list of certificate stores that store only Certificate Revokation Lists (CRLs).- Returns:
- A list of cert stores that store only CRLs
-
getCallbackHandler
CallbackHandlerConfig getCallbackHandler()
Gets the configuration of a callback handler.- Returns:
- Configuration of a callback handler
-
getProperties
java.util.Map getProperties()
Gets theMapobject which contains name-value pairs. These pairs include<Property>elements in the configuration XMI files.- Returns:
- The
Mapobject
-
-