| com.sun.xml.ws.api.security.trust.config.TrustSPMetadata
All known Subclasses: com.sun.xml.ws.security.trust.impl.DefaultTrustSPMetadata,
TrustSPMetadata | public interface TrustSPMetadata (Code) | |
This interface captures metadata of a service provider.
author: Jiandong Guo |
Method Summary | |
String | getCertAlias() Gets the alias for the certificate of the service provider. | String | getKeyType() 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.
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. | String | getTokenType() Gets the token type for the service provider. |
getCertAlias | String getCertAlias()(Code) | | Gets the alias for the certificate of the service provider.
the cert alias of the service provider |
getKeyType | String getKeyType()(Code) | | Gets the key type for the service provider.
the key type of the service provider |
getOtherOptions | Map<String, Object> getOtherOptions()(Code) | | 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.
always non-null |
getTokenType | String getTokenType()(Code) | | Gets the token type for the service provider.
the token type of the service provider |
|
|