Interface TrustSPMetadata
-
public interface TrustSPMetadataThis interface captures metadata of a service provider.
- Author:
- Jiandong Guo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCertAlias()Gets the alias for the certificate of the service provider.StringgetKeyType()Gets the key type for the service provider.Map<String,Object>getOtherOptions()Gets a map that contains attributes that aren't bound to any typed property on this class.StringgetTokenType()Gets the token type for the service provider.
-
-
-
Method Detail
-
getCertAlias
String getCertAlias()
Gets the alias for the certificate of the service provider.- Returns:
- the cert alias of the service provider
-
getTokenType
String getTokenType()
Gets the token type for the service provider.- Returns:
- the token type of the service provider
-
getKeyType
String getKeyType()
Gets the key type for the service provider.- Returns:
- the key type of the service provider
-
getOtherOptions
Map<String,Object> getOtherOptions()
Gets a map that contains attributes that aren't bound to any typed property on this class.the map is keyed by the name of the attribute and the value is any object. the map returned by this method is live, and you can add new attribute by updating the map directly.
- Returns:
- always non-null
-
-