Interface InstallParameters
- All Known Implementing Classes:
InstallParametersImpl
public interface InstallParameters
Collects a set of parameters.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final InstallParameters
Install parameters returningnull
in implemented methods. -
Method Summary
Modifier and TypeMethodDescriptionA set of fragment ids that are to install.@Nullable CallbackHandler
The callback handler handling possible callbacks from the installation routine.@Nullable Connection
The connection to apply the installation to.A set of module names to install.@Nullable Nice2Version
If a versionV
is specified, only those changelogs with a version<= V
are executed.
-
Field Details
-
ALL_FRAGMENTS
-
NULL_PARAMS
Install parameters returningnull
in implemented methods.
-
-
Method Details
-
getConnection
The connection to apply the installation to. Ifnull
, the connection from the default data source is used. -
getModules
A set of module names to install. Ifnull
, the whole application (all modules) are installed. -
getCallbackHandler
The callback handler handling possible callbacks from the installation routine. Some installation steps might not require this, but some do. Look at the documentation ofStep
for more information. -
getVersion
If a versionV
is specified, only those changelogs with a version<= V
are executed. -
getActiveFragmentIds
A set of fragment ids that are to install. Fragments that are not in this set are skipped. UseALL_FRAGMENTS
to have all fragments included (the default).
-