Sonic Management API

com.sonicsw.mq.mgmtapi.config.gen
Interface IAbstractAcceptorDirectBean.IAbstractSslParametersType

All Superinterfaces:
IMgmtBase, IMgmtSubBeanBase
All Known Subinterfaces:
IAcceptorDirectBean.ISslParametersType
Enclosing interface:
IAbstractAcceptorDirectBean

public static interface IAbstractAcceptorDirectBean.IAbstractSslParametersType
extends IMgmtSubBeanBase

Inner class representing SslParametersType This class extends IMgmtListBase


Method Summary
 IAcceptorDirectBean.IJsseParametersType createJsseParameters()
          Create an instance of an IJsseParametersType attribute.
 IAcceptorDirectBean.IJsseParametersType getJsseParameters()
          Get the attribute for JSSE_PARAMETERS.
 IMgmtAttributeMetaData getJsseParametersMetaData()
          Get the attribute metadata for JSSE_PARAMETERS.
 java.lang.String getSslCaCertificatesDir()
          Get the attribute for SSL_CA_CERTIFICATES_DIR as a String value.
 java.lang.String getSslCaCertificatesDir(java.lang.String defValue)
          Get the attribute for SSL_CA_CERTIFICATES_DIR as a String value.
 IMgmtAttributeMetaData getSslCaCertificatesDirMetaData()
          Get the attribute metadata for SSL_CA_CERTIFICATES_DIR.
 java.lang.String getSslCertificateChain()
          Get the attribute for SSL_CERTIFICATE_CHAIN as a String value.
 java.lang.String getSslCertificateChain(java.lang.String defValue)
          Get the attribute for SSL_CERTIFICATE_CHAIN as a String value.
 java.lang.String getSslCertificateChainForm()
          Get the attribute for SSL_CERTIFICATE_CHAIN_FORM as a String value.
 java.lang.String getSslCertificateChainForm(java.lang.String defValue)
          Get the attribute for SSL_CERTIFICATE_CHAIN_FORM as a String value.
 IMgmtAttributeMetaData getSslCertificateChainFormMetaData()
          Get the attribute metadata for SSL_CERTIFICATE_CHAIN_FORM.
 IMgmtAttributeMetaData getSslCertificateChainMetaData()
          Get the attribute metadata for SSL_CERTIFICATE_CHAIN.
 java.lang.String getSslCipherSuites()
          Get the attribute for SSL_CIPHER_SUITES as a String value.
 java.lang.String getSslCipherSuites(java.lang.String defValue)
          Get the attribute for SSL_CIPHER_SUITES as a String value.
 IMgmtAttributeMetaData getSslCipherSuitesMetaData()
          Get the attribute metadata for SSL_CIPHER_SUITES.
 boolean getSslClientAuthentication()
          Get the attribute for SSL_CLIENT_AUTHENTICATION as a boolean value.
 boolean getSslClientAuthentication(boolean defValue)
          Get the attribute for SSL_CLIENT_AUTHENTICATION as a boolean value.
 IMgmtAttributeMetaData getSslClientAuthenticationMetaData()
          Get the attribute metadata for SSL_CLIENT_AUTHENTICATION.
 java.lang.String getSslPrivateKey()
          Get the attribute for SSL_PRIVATE_KEY as a String value.
 java.lang.String getSslPrivateKey(java.lang.String defValue)
          Get the attribute for SSL_PRIVATE_KEY as a String value.
 IMgmtAttributeMetaData getSslPrivateKeyMetaData()
          Get the attribute metadata for SSL_PRIVATE_KEY.
 java.lang.String getSslPrivateKeyPassword()
          Get the attribute for SSL_PRIVATE_KEY_PASSWORD as a String value.
 java.lang.String getSslPrivateKeyPassword(java.lang.String defValue)
          Get the attribute for SSL_PRIVATE_KEY_PASSWORD as a String value.
 IMgmtAttributeMetaData getSslPrivateKeyPasswordMetaData()
          Get the attribute metadata for SSL_PRIVATE_KEY_PASSWORD.
 void setJsseParameters(IAcceptorDirectBean.IJsseParametersType value)
          Set the attribute for JSSE_PARAMETERS to the specified IJsseParametersType value.
 void setSslCaCertificatesDir(java.lang.String value)
          Set the attribute for SSL_CA_CERTIFICATES_DIR to the specified String value.
 void setSslCertificateChain(java.lang.String value)
          Set the attribute for SSL_CERTIFICATE_CHAIN to the specified String value.
 void setSslCertificateChainForm(java.lang.String value)
          Set the attribute for SSL_CERTIFICATE_CHAIN_FORM to the specified String value.
 void setSslCipherSuites(java.lang.String value)
          Set the attribute for SSL_CIPHER_SUITES to the specified String value.
 void setSslClientAuthentication(boolean value)
          Set the attribute for SSL_CLIENT_AUTHENTICATION to the specified boolean value.
 void setSslPrivateKey(java.lang.String value)
          Set the attribute for SSL_PRIVATE_KEY to the specified String value.
 void setSslPrivateKeyPassword(java.lang.String value)
          Set the attribute for SSL_PRIVATE_KEY_PASSWORD to the specified String value.
 
Methods inherited from interface com.sonicsw.ma.mgmtapi.config.IMgmtSubBeanBase
getBigDecimalAttribute, getBooleanAttribute, getByteArrayAttribute, getIntegerAttribute, getLongAttribute, getReferenceAttribute, getStringAttribute, setBigDecimalAttribute, setBooleanAttribute, setByteArrayAttribute, setIntegerAttribute, setLongAttribute, setReferenceAttribute, setStringAttribute
 
Methods inherited from interface com.sonicsw.ma.mgmtapi.config.IMgmtBase
getAttributeList, getAttributeMap, getAttributeMetaData, getConfigBean, getConfigBeanName, getConfigBeanNameTail, getConfigPath, getConfigPath, getMgmtBeanFactory, getParent, removeAttribute, setAttribute
 

Method Detail

createJsseParameters

IAcceptorDirectBean.IJsseParametersType createJsseParameters()
                                                             throws MgmtException
Create an instance of an IJsseParametersType attribute. This new instance is not currently part of the configuration. Once it has been configured it should be set into the configuration using the setJsseParameters method.

Returns:
The new IJsseParametersType bean
Throws:
MgmtException - Thrown if there is some problem creating this object

getJsseParameters

IAcceptorDirectBean.IJsseParametersType getJsseParameters()
                                                          throws MgmtException
Get the attribute for JSSE_PARAMETERS.

Returns:
The IJsseParametersType value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getJsseParametersMetaData

IMgmtAttributeMetaData getJsseParametersMetaData()
                                                 throws MgmtException
Get the attribute metadata for JSSE_PARAMETERS.

Returns:
The IMgmtAttributeMetaData value for this attribute
Throws:
MgmtException - Thrown when this attribute metadata doesn't exist or if there is some problem obtaining this attribute metadata

getSslCaCertificatesDir

java.lang.String getSslCaCertificatesDir()
                                         throws MgmtException
Get the attribute for SSL_CA_CERTIFICATES_DIR as a String value. This is an optional attribute and a MgmtException will be thrown if the attribute does not exist.

Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslCaCertificatesDir

java.lang.String getSslCaCertificatesDir(java.lang.String defValue)
                                         throws MgmtException
Get the attribute for SSL_CA_CERTIFICATES_DIR as a String value. If the attribute doesn't exist then return the specified default value.

Parameters:
defValue - The default value to return if this attribute doesn't exist
Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslCaCertificatesDirMetaData

IMgmtAttributeMetaData getSslCaCertificatesDirMetaData()
                                                       throws MgmtException
Get the attribute metadata for SSL_CA_CERTIFICATES_DIR.

Returns:
The IMgmtAttributeMetaData value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute's metadata

getSslCertificateChain

java.lang.String getSslCertificateChain()
                                        throws MgmtException
Get the attribute for SSL_CERTIFICATE_CHAIN as a String value. This is an optional attribute and a MgmtException will be thrown if the attribute does not exist.

Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslCertificateChain

java.lang.String getSslCertificateChain(java.lang.String defValue)
                                        throws MgmtException
Get the attribute for SSL_CERTIFICATE_CHAIN as a String value. If the attribute doesn't exist then return the specified default value.

Parameters:
defValue - The default value to return if this attribute doesn't exist
Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslCertificateChainForm

java.lang.String getSslCertificateChainForm()
                                            throws MgmtException
Get the attribute for SSL_CERTIFICATE_CHAIN_FORM as a String value. This is an optional attribute and a MgmtException will be thrown if the attribute does not exist.

Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslCertificateChainForm

java.lang.String getSslCertificateChainForm(java.lang.String defValue)
                                            throws MgmtException
Get the attribute for SSL_CERTIFICATE_CHAIN_FORM as a String value. If the attribute doesn't exist then return the specified default value.

Parameters:
defValue - The default value to return if this attribute doesn't exist
Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslCertificateChainFormMetaData

IMgmtAttributeMetaData getSslCertificateChainFormMetaData()
                                                          throws MgmtException
Get the attribute metadata for SSL_CERTIFICATE_CHAIN_FORM.

Returns:
The IMgmtAttributeMetaData value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute's metadata

getSslCertificateChainMetaData

IMgmtAttributeMetaData getSslCertificateChainMetaData()
                                                      throws MgmtException
Get the attribute metadata for SSL_CERTIFICATE_CHAIN.

Returns:
The IMgmtAttributeMetaData value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute's metadata

getSslCipherSuites

java.lang.String getSslCipherSuites()
                                    throws MgmtException
Get the attribute for SSL_CIPHER_SUITES as a String value. This is an optional attribute and a MgmtException will be thrown if the attribute does not exist.

Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslCipherSuites

java.lang.String getSslCipherSuites(java.lang.String defValue)
                                    throws MgmtException
Get the attribute for SSL_CIPHER_SUITES as a String value. If the attribute doesn't exist then return the specified default value.

Parameters:
defValue - The default value to return if this attribute doesn't exist
Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslCipherSuitesMetaData

IMgmtAttributeMetaData getSslCipherSuitesMetaData()
                                                  throws MgmtException
Get the attribute metadata for SSL_CIPHER_SUITES.

Returns:
The IMgmtAttributeMetaData value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute's metadata

getSslClientAuthentication

boolean getSslClientAuthentication()
                                   throws MgmtException
Get the attribute for SSL_CLIENT_AUTHENTICATION as a boolean value. This is an optional attribute and a MgmtException will be thrown if the attribute does not exist.

Returns:
The boolean value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslClientAuthentication

boolean getSslClientAuthentication(boolean defValue)
                                   throws MgmtException
Get the attribute for SSL_CLIENT_AUTHENTICATION as a boolean value. If the attribute doesn't exist then return the specified default value.

Parameters:
defValue - The default value to return if this attribute doesn't exist
Returns:
The boolean value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslClientAuthenticationMetaData

IMgmtAttributeMetaData getSslClientAuthenticationMetaData()
                                                          throws MgmtException
Get the attribute metadata for SSL_CLIENT_AUTHENTICATION.

Returns:
The IMgmtAttributeMetaData value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute's metadata

getSslPrivateKey

java.lang.String getSslPrivateKey()
                                  throws MgmtException
Get the attribute for SSL_PRIVATE_KEY as a String value. This is an optional attribute and a MgmtException will be thrown if the attribute does not exist.

Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslPrivateKey

java.lang.String getSslPrivateKey(java.lang.String defValue)
                                  throws MgmtException
Get the attribute for SSL_PRIVATE_KEY as a String value. If the attribute doesn't exist then return the specified default value.

Parameters:
defValue - The default value to return if this attribute doesn't exist
Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslPrivateKeyMetaData

IMgmtAttributeMetaData getSslPrivateKeyMetaData()
                                                throws MgmtException
Get the attribute metadata for SSL_PRIVATE_KEY.

Returns:
The IMgmtAttributeMetaData value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute's metadata

getSslPrivateKeyPassword

java.lang.String getSslPrivateKeyPassword()
                                          throws MgmtException
Get the attribute for SSL_PRIVATE_KEY_PASSWORD as a String value. This is an optional attribute and a MgmtException will be thrown if the attribute does not exist.

Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslPrivateKeyPassword

java.lang.String getSslPrivateKeyPassword(java.lang.String defValue)
                                          throws MgmtException
Get the attribute for SSL_PRIVATE_KEY_PASSWORD as a String value. If the attribute doesn't exist then return the specified default value.

Parameters:
defValue - The default value to return if this attribute doesn't exist
Returns:
The String value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute

getSslPrivateKeyPasswordMetaData

IMgmtAttributeMetaData getSslPrivateKeyPasswordMetaData()
                                                        throws MgmtException
Get the attribute metadata for SSL_PRIVATE_KEY_PASSWORD.

Returns:
The IMgmtAttributeMetaData value for this attribute
Throws:
MgmtException - Thrown when this attribute doesn't exist or if there is some problem obtaining this attribute's metadata

setJsseParameters

void setJsseParameters(IAcceptorDirectBean.IJsseParametersType value)
                       throws MgmtException
Set the attribute for JSSE_PARAMETERS to the specified IJsseParametersType value.

Parameters:
value - The IJsseParametersType value for this attribute
Throws:
MgmtException - Thrown if there is some problem setting this attribute

setSslCaCertificatesDir

void setSslCaCertificatesDir(java.lang.String value)
                             throws MgmtException
Set the attribute for SSL_CA_CERTIFICATES_DIR to the specified String value.

Parameters:
value - The String value for this attribute
Throws:
MgmtException - Thrown if there is some problem setting this attribute

setSslCertificateChain

void setSslCertificateChain(java.lang.String value)
                            throws MgmtException
Set the attribute for SSL_CERTIFICATE_CHAIN to the specified String value.

Parameters:
value - The String value for this attribute
Throws:
MgmtException - Thrown if there is some problem setting this attribute

setSslCertificateChainForm

void setSslCertificateChainForm(java.lang.String value)
                                throws MgmtException
Set the attribute for SSL_CERTIFICATE_CHAIN_FORM to the specified String value.

Parameters:
value - The String value for this attribute
Throws:
MgmtException - Thrown if there is some problem setting this attribute

setSslCipherSuites

void setSslCipherSuites(java.lang.String value)
                        throws MgmtException
Set the attribute for SSL_CIPHER_SUITES to the specified String value.

Parameters:
value - The String value for this attribute
Throws:
MgmtException - Thrown if there is some problem setting this attribute

setSslClientAuthentication

void setSslClientAuthentication(boolean value)
                                throws MgmtException
Set the attribute for SSL_CLIENT_AUTHENTICATION to the specified boolean value.

Parameters:
value - The boolean value for this attribute
Throws:
MgmtException - Thrown if there is some problem setting this attribute

setSslPrivateKey

void setSslPrivateKey(java.lang.String value)
                      throws MgmtException
Set the attribute for SSL_PRIVATE_KEY to the specified String value.

Parameters:
value - The String value for this attribute
Throws:
MgmtException - Thrown if there is some problem setting this attribute

setSslPrivateKeyPassword

void setSslPrivateKeyPassword(java.lang.String value)
                              throws MgmtException
Set the attribute for SSL_PRIVATE_KEY_PASSWORD to the specified String value.

Parameters:
value - The String value for this attribute
Throws:
MgmtException - Thrown if there is some problem setting this attribute

Sonic Management API

Copyright © 2001-2011 Progress Software Corporation. All Rights Reserved.
HTML formatted on 12-Aug-2011.