Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
11g Release 1 (10.3.4)

Part Number E13945-04

com.bea.security.saml2.providers
Interface SAML2IdentityAsserterMBean

All Superinterfaces:
AuthenticationProviderMBean, ExportMBean, IdentityAsserterMBean, ImportMBean, ListerMBean, NameListerMBean, ProviderMBean, SAML2IdPPartnerRegistryMBean, SAML2PartnerRegistryMBean, ServletAuthenticationFilterMBean

public interface SAML2IdentityAsserterMBean
extends IdentityAsserterMBean, SAML2IdPPartnerRegistryMBean, ImportMBean, ExportMBean, ServletAuthenticationFilterMBean

This MBean represents configuration information for the SAML2 Identity Assertion provider.

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime.


Method Summary
 String[] getActiveTypes()
          The token types active for this SAML2 Identity Assertion provider.
 boolean getBase64DecodingRequired()
          Base64 decoding is not required for SAML2 Identity Assertion providers.
 String getDescription()
          A short description of the SAML2 Identity Assertion provider.
 String getName()
          The name of this configuration.
 String getNameMapperClassName()
          The qualified name of the Java class that maps SAML Assertion name information to local Subjects.
 String getProviderClassName()
          The Java class used to load the SAML2 Identity Assertion provider.
 boolean getReplicatedCacheEnabled()
          Flag that indicates whether the replicated cache is used or not.
 String[] getSupportedExportConstraints()
          The security data that you want to be exported from this Identity Assertion provider's data store.
 String[] getSupportedExportFormats()
          The format of the file to export.
 String[] getSupportedImportConstraints()
          The security data that you want to be imported into this Identity Assertion provider's data store.
 String[] getSupportedImportFormats()
          The format of the file to import.
 String[] getSupportedTypes()
          The token types supported by this SAML2 Identity Assertion provider.
 String getVersion()
          The version number of the SAML2 Identity Assertion provider.
 void setNameMapperClassName(String newValue)
          The qualified name of the Java class that maps SAML Assertion name information to local Subjects.
 void setReplicatedCacheEnabled(boolean newValue)
          Flag that indicates whether the replicated cache is used or not.
 
Methods inherited from interface weblogic.management.security.authentication.IdentityAsserterMBean
setActiveTypes, setBase64DecodingRequired
 
Methods inherited from interface weblogic.management.security.ProviderMBean
getRealm
 
Methods inherited from interface com.bea.security.saml2.providers.SAML2IdPPartnerRegistryMBean
addIdPPartner, consumeIdPPartnerMetadata, getIdPPartner, idPPartnerExists, listIdPPartners, newEndpoint, newIndexedEndpoint, newWebSSOIdPPartner, newWSSIdPPartner, removeIdPPartner, updateIdPPartner
 
Methods inherited from interface com.bea.security.saml2.providers.SAML2PartnerRegistryMBean
loadCertificate
 
Methods inherited from interface weblogic.management.security.ProviderMBean
getRealm
 
Methods inherited from interface weblogic.management.utils.NameListerMBean
getCurrentName
 
Methods inherited from interface weblogic.management.utils.ListerMBean
advance, close, haveCurrent
 
Methods inherited from interface weblogic.management.security.ImportMBean
importData
 
Methods inherited from interface weblogic.management.security.ExportMBean
exportData
 
Methods inherited from interface weblogic.management.security.ProviderMBean
getRealm
 

Method Detail

getProviderClassName

String getProviderClassName()

The Java class used to load the SAML2 Identity Assertion provider.

Default Value:
"com.bea.security.saml2.providers.SAML2IdentityAsserterProviderImpl"

getDescription

String getDescription()

A short description of the SAML2 Identity Assertion provider.

Specified by:
getDescription in interface ProviderMBean
Default Value:
"SAML 2.0 Identity Assertion Provider. Supports Security Assertion Markup Language v2.0."

getVersion

String getVersion()

The version number of the SAML2 Identity Assertion provider.

Specified by:
getVersion in interface ProviderMBean
Default Value:
"1.0"

getSupportedImportFormats

String[] getSupportedImportFormats()

The format of the file to import. The list of supported import formats is determined by the Identity Asserter provider from which the security data were originally exported.

Specified by:
getSupportedImportFormats in interface ImportMBean
Default Value:
"SAML2"

getSupportedImportConstraints

String[] getSupportedImportConstraints()

The security data that you want to be imported into this Identity Assertion provider's data store. A SAML2 Identity Assertion Provider can import all partners(Partner=all), enabled partners(Partner=enabled) or only disabled partners(Partner=disabled).

Specified by:
getSupportedImportConstraints in interface ImportMBean
Default Value:
"Partner"

getSupportedExportFormats

String[] getSupportedExportFormats()

The format of the file to export. The list of supported export formats is determined by this Identity Asserter provider.

Specified by:
getSupportedExportFormats in interface ExportMBean
Default Value:
"SAML2"

getSupportedExportConstraints

String[] getSupportedExportConstraints()

The security data that you want to be exported from this Identity Assertion provider's data store. A SAML2 Identity Assertion provider can export all partners(Partner=all), enabled partners(Partner=enabled), or only disabled partners(Partner=disabled). The password inlined in the exported file can be encrypted or plain text(Passwords=cleartext).

Specified by:
getSupportedExportConstraints in interface ExportMBean
Default Value:
"Partner","Passwords"

getSupportedTypes

String[] getSupportedTypes()

The token types supported by this SAML2 Identity Assertion provider.

Specified by:
getSupportedTypes in interface IdentityAsserterMBean
Default Value:
weblogic.security.spi.IdentityAsserterV2.SAML2_ASSERTION_TYPE,weblogic.security.spi.IdentityAsserterV2.SAML2_ASSERTION_DOM_TYPE

getActiveTypes

String[] getActiveTypes()

The token types active for this SAML2 Identity Assertion provider.

Specified by:
getActiveTypes in interface IdentityAsserterMBean
Default Value:
weblogic.security.spi.IdentityAsserterV2.SAML2_ASSERTION_TYPE,weblogic.security.spi.IdentityAsserterV2.SAML2_ASSERTION_DOM_TYPE

getBase64DecodingRequired

boolean getBase64DecodingRequired()

Base64 decoding is not required for SAML2 Identity Assertion providers.

Specified by:
getBase64DecodingRequired in interface IdentityAsserterMBean
Default Value:
false

getNameMapperClassName

String getNameMapperClassName()

The qualified name of the Java class that maps SAML Assertion name information to local Subjects. When no mapper is supplied the default mapper implementation is used.

Changes take effect after you redeploy the module or restart the server.
Default Value:
""

setNameMapperClassName

void setNameMapperClassName(String newValue)
                            throws InvalidAttributeValueException

The qualified name of the Java class that maps SAML Assertion name information to local Subjects. When no mapper is supplied the default mapper implementation is used.

Parameters:
newValue - - new value for attribute NameMapperClassName
Throws:
InvalidAttributeValueException
Changes take effect after you redeploy the module or restart the server.
Default Value:
""

getReplicatedCacheEnabled

boolean getReplicatedCacheEnabled()

Flag that indicates whether the replicated cache is used or not. To support cluster, this flag must be set to true.

Default Value:
false

setReplicatedCacheEnabled

void setReplicatedCacheEnabled(boolean newValue)
                               throws InvalidAttributeValueException

Flag that indicates whether the replicated cache is used or not. To support cluster, this flag must be set to true.

Parameters:
newValue - - new value for attribute ReplicatedCacheEnabled
Throws:
InvalidAttributeValueException
Default Value:
false

getName

String getName()
Description copied from interface: ProviderMBean
The name of this configuration. WebLogic Server uses an MBean to implement and persist the configuration.

Specified by:
getName in interface ProviderMBean
Specified by:
getName in interface SAML2IdPPartnerRegistryMBean
Specified by:
getName in interface SAML2PartnerRegistryMBean
Default Value:
"SAML2IdentityAsserter"

Copyright 1996, 2010, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
11g Release 1 (10.3.4)

Part Number E13945-04