Package org.forgerock.opendj.config
Interface ConfigurationFramework.InitParameters
-
- Enclosing class:
- ConfigurationFramework
public static interface ConfigurationFramework.InitParameters
Represents parameters used for initializing aConfigurationFramework
.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Path
installPath()
Returns the path where application binaries are located.default Path
instancePath()
Returns the path where data binaries are located.default boolean
isClient()
Returns whether the associated configuration framework is being used within a client application.default com.forgerock.opendj.util.Version
version()
Returns the running binaries version.
-
-
-
Method Detail
-
installPath
default Path installPath()
Returns the path where application binaries are located.- Returns:
- a string representing the path where application binaries are located
-
instancePath
default Path instancePath()
Returns the path where data binaries are located.- Returns:
- a string representing the path where data binaries are located
-
version
default com.forgerock.opendj.util.Version version()
Returns the running binaries version.- Returns:
- the running binaries
version
-
isClient
default boolean isClient()
Returns whether the associated configuration framework is being used within a client application.- Returns:
true
if the associated configuration framework is being used within a client application,false
if used within a server application- See Also:
ConfigurationFramework.isClient()
-
-