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

Part Number E13945-03

weblogic.management.security
Interface ProviderMBean

All Known Subinterfaces:
ActiveDirectoryAuthenticatorMBean, AdjudicatorMBean, ApplicationVersionerMBean, AuditorMBean, AuthenticationProviderMBean, AuthenticatorMBean, AuthorizerMBean, CertificateRegistryMBean, CertPathBuilderMBean, CertPathProviderMBean, CertPathValidatorMBean, CertRegManagerMBean, CredentialMapperMBean, CustomDBMSAuthenticatorMBean, DBMSAuthenticatorMBean, DefaultAdjudicatorMBean, DefaultAuditorMBean, DefaultAuthenticatorMBean, DefaultAuthorizerMBean, DefaultCredentialMapperMBean, DefaultIdentityAsserterMBean, DefaultKeyStoreMBean, DefaultRoleMapperMBean, DeployableAuthorizerMBean, DeployableCredentialMapperMBean, DeployableRoleMapperMBean, FileBasedCertificateRegistryMBean, com.bea.security.providers.file.FileStoreMBean, GroupCertRegManagerMBean, IdentityAsserterMBean, IPlanetAuthenticatorMBean, KeyStoreMBean, LDAPAuthenticatorMBean, LDAPX509IdentityAsserterMBean, LoginExceptionPropagatorMBean, NegotiateIdentityAsserterMBean, NovellAuthenticatorMBean, OpenLDAPAuthenticatorMBean, OracleInternetDirectoryAuthenticatorMBean, OracleVirtualDirectoryAuthenticatorMBean, PasswordValidatorMBean, PKICredentialMapperMBean, ReadOnlySQLAuthenticatorMBean, RealmAdapterAdjudicatorMBean, RealmAdapterAuditorMBean, RealmAdapterAuthenticatorMBean, RealmAdapterAuthorizerMBean, RoleMapperMBean, SAML2CredentialMapperMBean, SAML2IdentityAsserterMBean, SAML2IdPPartnerRegistryMBean, SAML2PartnerRegistryMBean, SAML2SPPartnerRegistryMBean, SAMLAssertingPartyRegistryMBean, SAMLAuthenticatorMBean, SAMLCredentialMapperMBean, SAMLCredentialMapperV2MBean, SAMLIdentityAsserterMBean, SAMLIdentityAsserterV2MBean, SAMLPartnerRegistryMBean, SAMLRelyingPartyRegistryMBean, ServletAuthenticationFilterMBean, SQLAuthenticatorMBean, SystemPasswordValidatorMBean, WebLogicCertPathProviderMBean, WindowsNTAuthenticatorMBean

public interface ProviderMBean

The base MBean for all security providers.

It includes attributes common to all security providers. Every security provider must implement an MBean that extends this MBean.

If the security provider supports management methods, the management methods cannot be called until the validate method of realm in which the security provider is configured successfully returns. That is, the administrator must completely configure the realm before using the management methods (for example, adding a user).

Deprecation of MBeanHome and Type-Safe Interfaces

In addition to being used as a base class that provides functionality to security provider MBeans, JMX applications can use this class directly as a type-safe interface. When used as a type-safe interface, a JMX application imports this class and accesses it through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, JMX applications 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 getDescription()
          Returns a description of this security provider.
 String getName()
          The name of this configuration.
 RealmMBean getRealm()
          Returns the realm that contains this security provider.
 String getVersion()
          Returns this security provider's version.
 

Method Detail

getDescription

String getDescription()
Returns a description of this security provider.

Each security provider's MBean should set the default value of this read-only attribute to a string that describes the provider. In other words, each security provider's MBean hard-wires its description. There are no conventions governing the contents of the description. It should be a human readable string that gives a brief description of the security provider.


getVersion

String getVersion()
Returns this security provider's version.

Each security provider's MBean should set the default value of this read-only attribute to a string that specifies the version of the provider (e.g. 7.3.04). In other words, each security provider's MBean hard-wires its version. There are no conventions governing the contents of the version string.


getRealm

RealmMBean getRealm()
Returns the realm that contains this security provider. Returns null if this security provider is not contained by a realm.


getName

String getName()
The name of this configuration. WebLogic Server uses an MBean to implement and persist the configuration.

Default Value:
"Provider"

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.3)

Part Number E13945-03