Package javax.wbem.listener
Class WBEMListenerConstants
java.lang.Object
javax.wbem.listener.WBEMListenerConstants
public class WBEMListenerConstants
extends java.lang.Object
This class defines the constants used for
WBEMListener
configuration. If a property is tagged as optional an implementation may or
may not support the property. If the implementation does not support the
property, it must throw an IllegalArgumentException
if the
property value is attempted to be set.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final java.lang.String
Use this property to set the list of ciphers the listener will support.static final java.lang.String
This property along with the PROP_LISTENER_KEYSTORE_PASSWORD and PROP_LISTENER_TRUSTSTORE are used to configure mutual authentication.static final java.lang.String
This property along with the PROP_LISTENER_KEYSTORE and PROP_LISTENER_TRUSTSTORE are used to configure mutual authentication.static final java.lang.String
This property along with the PROP_LISTENER_KEYSTORE and PROP_LISTENER_KEYSTORE_PASSWORD are used to configure mutual authentication. -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
PROP_LISTENER_CIPHERS
public static final java.lang.String PROP_LISTENER_CIPHERSUse this property to set the list of ciphers the listener will support. Setting this value to null will use the default set of ciphers provided by the version of Java being used. Optional.- See Also:
-
PROP_LISTENER_KEYSTORE
public static final java.lang.String PROP_LISTENER_KEYSTOREThis property along with the PROP_LISTENER_KEYSTORE_PASSWORD and PROP_LISTENER_TRUSTSTORE are used to configure mutual authentication. This property is used to provide the filename of the keystore. The path can be relative or full. Optional.- See Also:
-
PROP_LISTENER_KEYSTORE_PASSWORD
public static final java.lang.String PROP_LISTENER_KEYSTORE_PASSWORDThis property along with the PROP_LISTENER_KEYSTORE and PROP_LISTENER_TRUSTSTORE are used to configure mutual authentication. This property is used to provide the password of the keystore. Optional.- See Also:
-
PROP_LISTENER_TRUSTSTORE
public static final java.lang.String PROP_LISTENER_TRUSTSTOREThis property along with the PROP_LISTENER_KEYSTORE and PROP_LISTENER_KEYSTORE_PASSWORD are used to configure mutual authentication. This property is used to provide the filename of the truststore. The path can be relative or full. Optional.- See Also:
-
-
Constructor Details
-
WBEMListenerConstants
public WBEMListenerConstants()
-