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
Modifier and TypeMethodDescriptionReturns the setup install path.Returns the setup instance path.Returns the name of the key manager provider configured for the server to setup.Returns the name of the trust manager provider configured for the server to setup.
-
Method Details
-
installPath
Path installPath()Returns the setup install path.- Returns:
- The setup install
Path
-
instancePath
Path instancePath()Returns the setup instance path.- Returns:
- The setup instance
Path
-
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
-