Package org.forgerock.opendj.setup.model
Interface Profile.SetupConfiguration
-
- All Known Implementing Classes:
Setup
- Enclosing class:
- Profile
public static interface Profile.SetupConfiguration
Represents the configuration of the setup associated to this profile.This object is used to assign values to build-in profile parameters such as dsSetupInstancePath or dsSetupProductionModeEnabled.
Using an interface here helps to interact with
Setup
object without having a direct reference on it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Path
installPath()
Returns the setup install path.Path
instancePath()
Returns the setup instance path.String
keyManagerProviderName()
Returns the name of the key manager provider configured for the server to setup.String
trustManagerProviderName()
Returns the name of the trust manager provider configured for the server to setup.
-
-
-
Method Detail
-
keyManagerProviderName
String keyManagerProviderName()
Returns the name of the key manager provider configured for the server to setup.- Returns:
- A string representing the name of the key manager provider configured for the server to setup
-
trustManagerProviderName
String trustManagerProviderName()
Returns the name of the trust manager provider configured for the server to setup.- Returns:
- A string representing the name of the trust manager provider configured for the server to setup
-
-