|
Oracle Fusion Middleware Oracle WebLogic Server 10.3.1 MBean API Reference 11g Release 1 (10.3.1) Part Number E13945-02 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CertRegManagerMBean
The CertRegManager is used manage a certificate registry that is stored in the embedded LDAP server. This is utility code that is shared by the CertificateRegistry and SAML.
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 | |
---|---|
boolean |
aliasExists(String alias)
Determines whether or not an alias exists in the registry. |
void |
copyToDER(String alias,
String certificateFile)
writes a certificate in the registry to a file in DER binary format. |
void |
copyToPEM(String alias,
String certificateFile)
writes a certificate in the registry to a file in PEM base64 encoded format. |
X509Certificate |
getCertificate(String alias)
Retrieves a certificate from the registry. |
String |
getName()
The name of this configuration. |
String[] |
getSupportedExportConstraints()
A certificate registry always exports all the certificates in the registry thus does not support export constraints. |
String[] |
getSupportedExportFormats()
A certificate registry exports trusted CAs to a JKS keystore. |
String[] |
getSupportedImportConstraints()
A certificate registry always imports all the certificates in a keystore (identities and trusted CAs) thus does not support export constraints. |
String[] |
getSupportedImportFormats()
A certificate registry imports trusted CAs from a JKS keystore. |
String |
listAliases(String aliasWildcard,
int maxToReturn)
Lists the registered aliases that match a wild card. |
void |
registerCertificate(String alias,
String certificateFile)
Registers an end certificate in the registry under an alias. |
void |
unregisterCertificate(String alias)
Unregisters an end certificate from the registry. |
Methods inherited from interface weblogic.management.security.ProviderMBean |
---|
getDescription, getRealm, getVersion |
Methods inherited from interface weblogic.management.security.ImportMBean |
---|
importData |
Methods inherited from interface weblogic.management.security.ExportMBean |
---|
exportData |
Methods inherited from interface weblogic.management.utils.NameListerMBean |
---|
getCurrentName |
Methods inherited from interface weblogic.management.utils.ListerMBean |
---|
advance, close, haveCurrent |
Method Detail |
---|
String[] getSupportedImportFormats()
A certificate registry imports trusted CAs from a JKS keystore.
getSupportedImportFormats
in interface ImportMBean
String[] getSupportedImportConstraints()
A certificate registry always imports all the certificates in a keystore (identities and trusted CAs) thus does not support export constraints.
getSupportedImportConstraints
in interface ImportMBean
String[] getSupportedExportFormats()
A certificate registry exports trusted CAs to a JKS keystore. The keystore must not already exist.
getSupportedExportFormats
in interface ExportMBean
String[] getSupportedExportConstraints()
A certificate registry always exports all the certificates in the registry thus does not support export constraints.
getSupportedExportConstraints
in interface ExportMBean
void registerCertificate(String alias, String certificateFile) throws AlreadyExistsException, InvalidParameterException
Registers an end certificate in the registry under an alias.
Throws InvalidParameterException if the alias or certificateFile is empty or null or if the file does not exist or cannot be read.
alias
- - The alias to register the certificate under. It must not be empty or null. Aliases are case-insensitive.certificateFile
- - The pathname (relative to the directory the admin server is booted from) of a PEM or DER file containing the certificate to be registered.
weblogic.management.utils.AlreadyExistsException
weblogic.management.utils.InvalidParameterException
void unregisterCertificate(String alias) throws NotFoundException, InvalidParameterException
Unregisters an end certificate from the registry.
Throws InvalidParameterException if alias is empty or null.
alias
- - The alias the certificate is registered under. It must not be empty or null. Aliases are case-insensitive.
weblogic.management.utils.NotFoundException
weblogic.management.utils.InvalidParameterException
String listAliases(String aliasWildcard, int maxToReturn) throws InvalidCursorException, InvalidParameterException
Lists the registered aliases that match a wild card.
Returns a String containing a cursor that may be passed into the NameListerMBean methods to read the list. The getCurrentName method returns the current alias on the list.
aliasWildcard
- - A wild card used to select aliases. It supports three formats: "*" matches all aliases. "foo*" matches all aliases starting with the string "foo". "foo" matches the alias "foo" only. The matches are case-insensitive.maxToReturn
- - The maximum number of aliases this method may return. If there are more matches than this maximum, then the returned results are arbitrary because this method does not sort the results. Set this parameter to zero to return all matching aliases.
weblogic.management.utils.InvalidCursorException
weblogic.management.utils.InvalidParameterException
X509Certificate getCertificate(String alias) throws NotFoundException, InvalidParameterException
Retrieves a certificate from the registry.
Throws NotFoundException if alias does not exist in the registry.
alias
- - The alias the certificate is registered under. It must not be empty or null. Aliases are case-insensitive.
weblogic.management.utils.NotFoundException
weblogic.management.utils.InvalidParameterException
boolean aliasExists(String alias) throws InvalidParameterException
Determines whether or not an alias exists in the registry.
Throws InvalidParameterException if alias is empty or null.
alias
- - The alias the certificate is registered under. It must not be empty or null. Aliases are case-insensitive.
weblogic.management.utils.InvalidParameterException
void copyToPEM(String alias, String certificateFile) throws NotFoundException, InvalidParameterException
writes a certificate in the registry to a file in PEM base64 encoded format.
Throws InvalidParameterException if alias or certificateFile is empty or null or if the file cannot be written to.
alias
- - The alias the certificate is registered under. It must not be empty or null. Aliases are case-insensitive.certificateFile
- - The pathname (relative to the directory the admin server is booted from) of the file to write the certificate to.
weblogic.management.utils.NotFoundException
weblogic.management.utils.InvalidParameterException
void copyToDER(String alias, String certificateFile) throws NotFoundException, InvalidParameterException
writes a certificate in the registry to a file in DER binary format.
Throws InvalidParameterException if alias or certificateFile is empty or null or if the file cannot be written to.
alias
- - The alias the certificate is registered under. It must not be empty or null. Aliases are case-insensitive.certificateFile
- - The pathname (relative to the directory the admin server is booted from) of the file to write the certificate to.
weblogic.management.utils.NotFoundException
weblogic.management.utils.InvalidParameterException
String getName()
ProviderMBean
getName
in interface ProviderMBean
|
Documentation is available at http://download.oracle.com/docs/cd/E12839_01/web.1111/wls.htm Copyright 1996, 2009, 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 10.3.1 MBean API Reference 11g Release 1 (10.3.1) Part Number E13945-02 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |