Package org.jboss.as.cli
Interface SSLConfig
-
public interface SSLConfigA representation of the SSL Configuration.- Author:
- Darran Lofthouse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAlias()StringgetKeyPassword()StringgetKeyStore()StringgetKeyStorePassword()StringgetTrustStore()StringgetTrustStorePassword()booleanisModifyTrustStore()
-
-
-
Method Detail
-
getKeyStore
String getKeyStore()
- Returns:
- The location of the keyStore or null if not specified.
-
getKeyStorePassword
String getKeyStorePassword()
- Returns:
- The keyStorePassword or null if not specified.
-
getAlias
String getAlias()
- Returns:
- The alias or null if not specified.
-
getKeyPassword
String getKeyPassword()
- Returns:
- The keyPassword or null if not specified.
-
getTrustStore
String getTrustStore()
- Returns:
- The location of the trustStore or null if not specified.
-
getTrustStorePassword
String getTrustStorePassword()
- Returns:
- The trustStorePassword or null if not specified.
-
isModifyTrustStore
boolean isModifyTrustStore()
- Returns:
- true if the CLI should automatically update the trust store.
-
-