Interface Context
- All Known Subinterfaces:
InstallerContext
,UninstallerContext
InstallerContext
or an UninstallerContext
, depending on
whether they are part of the installer or uninstaller.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add a listener to receive installer events.void
addToClassPath
(File file) Add a JAR file or a classpath directory root to the classpath of the installer application.void
cancel()
Cancel the installer application without asking any questions.void
finish
(int exitCode) Quits the process in an ordered manner.getActionById
(String id) Get a particular action with the specified ID.Action[]
getActions
(Screen screen) Get all registered actions for a specified screen.Action[]
getActions
(Class<? extends Action> actionClass, Screen screen) Get all registered actions for a specified screen and a given action class.Returns the add-on application id if this project generates add-on installers.Returns the application id of this project.Returns the name of the application.boolean
getBooleanVariable
(String variableName) Convenience method to get an installer variable with a type ofjava.lang.Boolean
.getCompilerVariable
(String variableName) Gets the value of a compiler variable as it was defined for this media file at compile time.Retrieves the directory mapped to the "Installation directory" in the distribution tree.Retrieves the default installation directory configured in the install4j IDE.getDestinationFile
(File archiveFile) Get the location where the installer will install a file in the distribution tree.getDestinationFile
(String archivePath) Same asgetDestinationFile
, only with a path argument.getDestinationFileInfo
(String archivePath) Analyze a path in the distribution tree.getExternalFile
(ExternalFile externalFile, boolean installedLocation) Get the location of an external file that was packaged with the installer.getExternalFile
(LocalizedExternalFile localizedExternalFile, boolean installedLocation) Get the location of a localized external file that was packaged with the installer.String[]
Returns an array with the command line arguments that were not recognized by install4j.getFileSetById
(String id) Returns the file set for a specified ID.getFileSetByName
(String name) Returns one file set with the specified name.Returns all additional files sets contained in this installer.getFirstAction
(Class<? extends Action> actionClass, Screen screen) Get the registered action for a specified screen and a given action class.getFirstScreen
(Class<?> screenClass) Get the registered screen for a given screen class.Get the ID that the framework associates with an action.Get the ID that the framework associates with a screen.Returns the installation component for a specified ID.Returns all installation components for this installer.Retrieves the installation directory selected by the user, or the default installation directory if the user has not yet made a selection.Return the ISO code for the language that the installer is running with.Returns the launcher for a specified ID.Returns all launchers for this installer.Returns the ID of the media file that was used to create this installer.getMessage
(String key) Get a message for a localization key.getMessage
(String key, Object... arguments) Get a message for a localization key.Get the current progress interface.Retrieves the directory where the resource files are present that have been configured on the Installer->Custom Code &Resources tab.getScreenById
(String id) Get a particular screen with the specified ID.Screen[]
Get all registered screens.Screen[]
getScreens
(Class<?> screenClass) Get all registered screens for a given screen class.getVariable
(String variableName) Get an installer variable.Get the names of all defined installer variables.Returns the version of the installer.Get the wizard context if the installer or uninstaller is running in GUI mode.void
goBack
(int numberOfScreens) Go backwards in the screen sequence.void
goBackInHistory
(int numberOfScreens) Go backwards in the screen history.void
goBackInHistory
(Screen targetScreen) Go backwards in the screen history to the target screen.void
goForward
(int numberOfScreens, boolean checkCondition, boolean executeActions) Go forward in the screen sequence.void
gotoScreen
(Screen screen) Programmatically switch to another screen in the installer without checking the condition of the target screen or executing any actions.void
gotoScreen
(Screen screen, boolean checkCondition, boolean executeActions) Programmatically switch to another screen in the installer.void
If you encounter an exception in your code that cannot be handled, you can use this method to invoke the default exception handling of the install4j runtime.boolean
Returns if the code is running in the elevated helper process started by the "Request privileges" action.void
Initialize all lazily created screens.boolean
Returns whether the media set was an archive as opposed to an installer.boolean
Returns whether the user has canceled the installation or not.boolean
Returns whether the installer or uninstaller is running in console mode.boolean
Determine if an error has occurred for any of the previous actions.boolean
isGui()
Returns whether the installer or uninstaller is running in GUI mode.boolean
Returns whether a reboot is required on Windows.boolean
Returns whether the installer or uninstaller is running in unattended mode.void
registerHiddenVariable
(String variableName) Register a variable whose values should not be written to the installation log file.void
registerResponseFileComment
(String variableName, String comment) Register a comment for a variable that is written to the response file.void
registerResponseFileVariable
(String variableName) Register a variable that should be written to the response file when the installation is finished.void
Remove a listener added withaddInstallerEventListener
.runElevated
(RemoteCallable remoteCallable, boolean alwaysExecute) Execute an remoteCallable with full admin rights if possible.runScript
(ScriptProperty scriptProperty, Bean bean, Object... parameters) Run a script.runUnelevated
(RemoteCallable remoteCallable) Execute an remoteCallable with the rights of the original user that started the installer.void
runWithSuspendedActions
(Runnable runnable) Execute some code while any running actions are suspended.void
setErrorOccurred
(boolean errorOccurred) Clear or set the error flag that is described forisErrorOccurred
.void
setVariable
(String variableName, Object value) Set an installer variable.void
triggerReboot
(boolean askUser) Triggers a reboot at the end of installation or uninstallation on Windows.void
unregisterResponseFileVariable
(String variableName) Reverses the action ofregisterResponseFileVariable(String)
.
-
Method Details
-
getLanguageId
String getLanguageId()Return the ISO code for the language that the installer is running with. If only the principal language has been configured for the installer, this will always be the code for the principal language. If additional languages have been configured, the user can select a language or the language has been automatically determined by the installer, depending on the settings on the "Languages" tab in the install4j GUI. If the installer chooses a language automatically and none of the additional languages matches the system locale, the principal language will be used.- Returns:
- the ISO code for the language. This code is displayed in brackets after the language name in the install4j GUI.
-
getMessage
Get a message for a localization key. This method is equivalent togetMessage(String, Object[])
with thearguments
parameter set tonull
.- Parameters:
key
- the localization key- Returns:
- the message
- Throws:
MissingResourceException
- if the key cannot be found- See Also:
-
getMessage
Get a message for a localization key. The key can be either a system key as present in theresource/messages/messages_*.utf8
files or a key in a custom localization file.The search order is
- custom localization file for actual language
- custom localization file for principal language
- system localization file provided by install4j
The message is passed to
which replaces variables of the form {0} that are embedded in the message key.java.text.MessageFormat.format(message, arguments)
- Parameters:
key
- the localization keyarguments
- the arguments as processed by thejava.text.MessageFormat
class. Can benull
.- Returns:
- the message
- Throws:
MissingResourceException
- if the key cannot be found
-
getInstallationDirectory
File getInstallationDirectory()Retrieves the installation directory selected by the user, or the default installation directory if the user has not yet made a selection. Note that on macOS this is usually/Applications
. If you delete this directory, it will have catastrophic consequences on macOS. To get the directory where files are installed in a cross-platform way, please usegetContentDirectory()
instead.- Returns:
- the installation directory
-
getDefaultInstallationDirectory
File getDefaultInstallationDirectory()Retrieves the default installation directory configured in the install4j IDE. If "Detect previous installation directory" is selected on the "Installer->Update options" tab, the value returned bygetInstallationDirectory()
may not be the same as the one configured in the install4j IDE. If you need to fall back to the default directory for some reason, you can use the return value of this method and callInstallerContext.setInstallationDirectory(File)
.- Returns:
- the default installation directory as configured in the install4j IDE
-
getContentDirectory
File getContentDirectory()Retrieves the directory mapped to the "Installation directory" in the distribution tree. On Windows, Linux and Unix, this is the same asgetInstallationDirectory()
. For single bundle archives on macOS, this is[Bundle name].app/Contents/Resources/app/
. To reference an installed file in a cross-platform way, use this method and notgetInstallationDirectory()
.- Returns:
- the installation directory
-
getResourceDirectory
File getResourceDirectory()Retrieves the directory where the resource files are present that have been configured on the Installer->Custom Code &Resources tab.- Returns:
- the resources directory
-
isUnattended
boolean isUnattended()Returns whether the installer or uninstaller is running in unattended mode.- Returns:
true
orfalse
.
-
isConsole
boolean isConsole()Returns whether the installer or uninstaller is running in console mode.- Returns:
true
orfalse
.
-
isGui
boolean isGui()Returns whether the installer or uninstaller is running in GUI mode.- Returns:
true
orfalse
.
-
isArchive
boolean isArchive()Returns whether the media set was an archive as opposed to an installer.- Returns:
true
orfalse
.
-
getApplicationId
String getApplicationId()Returns the application id of this project.- Returns:
- the application id
-
getAddOnApplicationId
String getAddOnApplicationId()Returns the add-on application id if this project generates add-on installers.- Returns:
- the add-on application id or the empty string if the project generates regular installers.
-
addInstallerEventListener
void addInstallerEventListener(InstallerEventListener listener) throws NotSupportedInElevationException Add a listener to receive installer events.- Parameters:
listener
- the listener that should be added.- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action
-
removeInstallerEventListener
void removeInstallerEventListener(InstallerEventListener listener) throws NotSupportedInElevationException Remove a listener added withaddInstallerEventListener
.- Parameters:
listener
- the listener that should be removed.- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action- See Also:
-
gotoScreen
Programmatically switch to another screen in the installer without checking the condition of the target screen or executing any actions.Corresponds to
gotoScreen(screen, false, false)
.- Parameters:
screen
- the screen to be activated.- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action- See Also:
-
gotoScreen
void gotoScreen(Screen screen, boolean checkCondition, boolean executeActions) throws NotSupportedInElevationException Programmatically switch to another screen in the installer. If the given screen has not been registered, the operation will fail. Registered screens can be obtained from thegetScreenById(...)
,getScreens(...)
andgetFirstScreen(...)
methods.Note: This method only has a direct effect when called from a screen. When called from an action, all remaining actions for the screen will be executed, and the most recent request for a screen change will then be performed.
- Parameters:
screen
- the screen to be activated.checkCondition
- if the "Condition expression" of the target screen should be checked or notexecuteActions
- if the associated actions of the current screen should be performed or not. This parameter has no effect if this method is called from an action.- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action- See Also:
-
getScreenById
Get a particular screen with the specified ID. You can display screen IDs in the install4j IDE.- Parameters:
id
- the ID of the screen- Returns:
- the screens, or
null
if no screen with the specified ID exists - Throws:
NotSupportedInElevationException
- if this method is called by an elevated action
-
getScreens
Screen[] getScreens()Get all registered screens.- Returns:
- the screens
-
getScreens
Get all registered screens for a given screen class.- Parameters:
screenClass
- the class of the screen.- Returns:
- the screens or an empty array if no screen of this class could be found.
- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action
-
getFirstScreen
Get the registered screen for a given screen class. If multiple screens of the same class are registered, the first occurrence is returned. In that case,getScreens(Class)
should be used.- Parameters:
screenClass
- the class of the screen.- Returns:
- the screen or
null
if no screen of this class could be found. - Throws:
NotSupportedInElevationException
- if this method is called by an elevated action- See Also:
-
getActionById
Get a particular action with the specified ID. You can display action IDs in the install4j IDE.- Parameters:
id
- the ID of the action- Returns:
- the action, or
null
if no action with the specified ID exists - Throws:
NotSupportedInElevationException
- if this method is called by an elevated action
-
getActions
Get all registered actions for a specified screen.- Parameters:
screen
- the screen whose associated actions should be returned- Returns:
- the actions or an empty array if the specified screen has no associated actions.
- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action
-
getActions
Action[] getActions(Class<? extends Action> actionClass, Screen screen) throws NotSupportedInElevationException Get all registered actions for a specified screen and a given action class.- Parameters:
actionClass
- the class of the action.screen
- the screen whose associated actions should be returned- Returns:
- the actions or an empty array if no actions of this class could be found for the specified screen.
- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action
-
getFirstAction
Action getFirstAction(Class<? extends Action> actionClass, Screen screen) throws NotSupportedInElevationException Get the registered action for a specified screen and a given action class. If multiple actions of the same class are registered, the first occurrence is returned. In that case,getActions(Class, Screen)
should be used.- Parameters:
actionClass
- the class of the action.screen
- the screen whose associated action should be returned ornull
if all screens should be searched- Returns:
- the action or
null
if no action of this class could be found for the specified screen. - Throws:
NotSupportedInElevationException
- if this method is called by an elevated action- See Also:
-
getId
Get the ID that the framework associates with an action.This is the reverse method of
getActionById(String)
.- Parameters:
action
- the action whose ID should be returned- Returns:
- the ID
-
getId
Get the ID that the framework associates with a screen.This is the reverse method of
getScreenById(String)
.- Parameters:
screen
- the screen whose ID should be returned- Returns:
- the ID
-
getWizardContext
WizardContext getWizardContext()Get the wizard context if the installer or uninstaller is running in GUI mode. The wizard context allows you to modify the installer GUI. The methods in the wizard context are not functional if the installer or uninstaller is running in unattended or console mode, in those cases, they will do nothing.- Returns:
- the wizard context.
- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action
-
getFileSets
Collection<FileSetSetup> getFileSets()Returns all additional files sets contained in this installer. If no file sets have been defined in the install4j GUI, the returned collection will be empty. The default file set is not contained in this list and will always be installed by the "Install files" action. The items in the collection will be in the same order as defined in the GUI.- Returns:
- a collection containing
FileSetSetup
instances. - See Also:
-
getFileSetById
Returns the file set for a specified ID. You can display file set IDs in the install4j IDE.- Parameters:
id
- the ID- Returns:
- the
FileSetSetup
ornull
if the ID doesn't exist. - See Also:
-
getFileSetByName
Returns one file set with the specified name.- Parameters:
name
- the name- Returns:
- the
FileSetSetup
ornull
if no file set with this name exists. - See Also:
-
getInstallationComponents
Collection<InstallationComponentSetup> getInstallationComponents()Returns all installation components for this installer. If no installation components have been defined in the install4j GUI, the returned collection will be empty. The items in the collection will be in the same order as defined in the GUI.- Returns:
- a collection containing
InstallationComponentSetup
instances. - See Also:
-
getInstallationComponentById
Returns the installation component for a specified ID. You can display component IDs in the install4j IDE.- Parameters:
id
- the ID- Returns:
- the
InstallationComponentSetup
ornull
if the ID doesn't exist. - See Also:
-
getLaunchers
Collection<LauncherSetup> getLaunchers()Returns all launchers for this installer. If no launchers have been defined in the install4j GUI, the returned collection will be empty. The items in the collection will be in the same order as defined in the GUI.- Returns:
- a collection containing
LauncherSetup
instances. - See Also:
-
getLauncherById
Returns the launcher for a specified ID. The ID of a launcher can be displayed the install4j GUI by invoking Launcher->Show Launcher IDs from the main menu when the Launchers section is active. The method is important for beans that have a property of typejava.lang.String
whose property descriptor has a context of typeCONTEXT_LAUNCHER_ID
. The property will contain a launcher id that can be resolved at runtime with this method.- Parameters:
id
- the ID- Returns:
- the
LauncherSetup
ornull
if the ID doesn't exist. - See Also:
-
isCancelling
boolean isCancelling()Returns whether the user has canceled the installation or not. Long-running actions should check this method frequently to comply with a cancel request from the user.- Returns:
true
orfalse
.
-
cancel
void cancel()Cancel the installer application without asking any questions. Rollback of already executed actions will be performed.If a question has to be asked first, use
runWithSuspendedActions(Runnable)
and call this method from the Runnable. -
runWithSuspendedActions
Execute some code while any running actions are suspended. Actions are only suspended when they check whether the installer is being canceled, so the currently executing action may not be suspended immediately. It makes sense to call this method as a reaction to an external event, such as a click on a button. For example, you can then ask the user whether the installer application should be canceled and if yes, callcancel()
in the Runnable.- Parameters:
runnable
- the code that will be executed while the actions are suspended
-
handleCriticalException
If you encounter an exception in your code that cannot be handled, you can use this method to invoke the default exception handling of the install4j runtime. An error report will be prepared, the user will be notified, and the installer or uninstaller will quit. No rollback will be performed.This method is for exceptional circumstances only. Do not call this method if an action fails in an expected way: if you return
false
from an action, its configurable failure strategy can be used to inform the user of the failure and rollback previous actions.- Parameters:
e
- the exception- See Also:
-
getDestinationFile
Get the location where the installer will install a file in the distribution tree. This method is important for actions with properties of typejava.io.File
. The property values will be relative file names and contain encoded information about installation roots. With this method, the installation location can be resolved. Note that the result of this method can change over time as installer variables or the installation directory are changed.- Parameters:
archiveFile
- the relative file in the distribution tree- Returns:
- the location of the installed file
-
getDestinationFile
Same asgetDestinationFile
, only with a path argument.- Parameters:
archivePath
- the relative path in the distribution tree- Returns:
- the location of the installed file
- See Also:
-
getDestinationFileInfo
Analyze a path in the distribution tree. Beans withjava.io.File
properties can use this method to split paths into root information and relative information and to resolve the installation location of a file in the distribution tree. ThegetDestinationFile(..)
methods directly give you the installed file location.- Parameters:
archivePath
- the relative path in the distribution tree- Returns:
- the
FileInfo
information object - See Also:
-
getVariable
Get an installer variable. In the install4j GUI, installer variables are written as ${installer:variableName}. Please read the help topic on variables in the documentation for more information.- Parameters:
variableName
- the name of the installer variable. Do not use the IDE syntax${installer:...}
for this parameter.- Returns:
- the variable value or
null
if the variable with the specified name was not defined. - See Also:
-
getBooleanVariable
Convenience method to get an installer variable with a type ofjava.lang.Boolean
.- Parameters:
variableName
- the name of the installer variable. Do not use the IDE syntax${installer:...}
for this parameter.- Returns:
true
if the variable value equalsjava.lang.Boolean.TRUE
orfalse
otherwise (also if the variable has not been defined)- See Also:
-
setVariable
Set an installer variable. Please read the help topic on variables in the documentation for more information.- Parameters:
variableName
- the name of the installer variable. Do not use the IDE syntax${installer:...}
for this parameter.value
- the new variable value- See Also:
-
getVariableNames
Get the names of all defined installer variables. Please read the help topic on variables in the documentation.- Returns:
- a set of variable names of type
java.lang.String
. - See Also:
-
getCompilerVariable
Gets the value of a compiler variable as it was defined for this media file at compile time. Compiler variables are defined on the "Compiler variables" tab and can be overridden for each media file. System compiler variables are also available from this method. In the install4j IDE, compiler variables are written as ${compiler:variableName}. Please read the help topic on variables in the documentation for more information.- Parameters:
variableName
- the name of the compiler variable. Do not use the IDE syntax${compiler:...}
for this parameter.- Returns:
- the variable value or
null
if the variable with the specified name was not defined.
-
runScript
Run a script. Beans that have properties of typecom.install4j.api.beans.ScriptProperty
can run these user-defined scripts at runtime with this method. Script properties require a property descriptor in the associated BeanInfo class that contains information about the return type as well as any additional parameters.- Parameters:
scriptProperty
- the value of the script propertybean
- the bean that defines the script propertyparameters
- the additional parameters- Returns:
- the result of the script or
null
if the return type of the script isvoid
- Throws:
Exception
- Scripts are user-defined and can throw all sorts of exceptions.- See Also:
-
getProgressInterface
ProgressInterface getProgressInterface()Get the current progress interface. If called by a screen or form component, this will be a default progress interface where status messages and progress methods do nothing. A screen can replace that default progress interface with a different implementation so that the status messages and progress methods invoked by the associated actions are displayed on the screen. This is done by the "Installation" screen and the customizable "Display progress" screen.During rollback, a special rollback dialog will be shown and make its progress interface available through this method.
- Returns:
- the current progress interface
- See Also:
-
goForward
void goForward(int numberOfScreens, boolean checkCondition, boolean executeActions) throws NotSupportedInElevationException Go forward in the screen sequence.Note: This method only has a direct effect when called from a screen. When called from an action, all remaining actions for the screen will be executed, and the most recent request for a screen change will then be performed.
- Parameters:
numberOfScreens
- the number of screens to move forward. If the resulting index is beyond the last screen, the installer or uninstaller will quit.checkCondition
- if the "Condition expression" of the target screen should be checked or notexecuteActions
- if the associated actions of the current screen should be performed or not. This parameter has no effect if this method is called from an action.- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action
-
goBack
Go backwards in the screen sequence. This is the sequence displayed on the "Screens" tab in the install4j GUI. You can go backwards in the screen history with thegoBackInHistory
method.Note: This method only has a direct effect when called from a screen. When called from an action, all remaining actions for the screen will be executed, and the most recent request for a screen change will then be performed.
- Parameters:
numberOfScreens
- the number of screens to move backwards. If the resulting index is negative, aRuntimeException
will be thrown. You can pass0
to return to the current screen from an action.- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action- See Also:
-
goBackInHistory
Go backwards in the screen history. This is not necessarily the same as the screen sequence, since the screen flow can be changed programmatically.Note: This method only has a direct effect when called from a screen. When called from an action, all remaining actions for the screen will be executed, and the most recent request for a screen change will then be performed.
- Parameters:
numberOfScreens
- the number of screens to move backwards in the screen history. If the resulting index is negative, aRuntimeException
will be thrown. You can pass0
to return to the current screen from an action.- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action- See Also:
-
goBackInHistory
Go backwards in the screen history to the target screen. If the given screen has not been registered or was not displayed previously, the operation will fail. Registered screens can be obtained from thegetScreenById(...)
,getScreens(...)
andgetFirstScreen(...)
methods.Note: This method only has a direct effect when called from a screen. When called from an action, all remaining actions for the screen will be executed, and the most recent request for a screen change will then be performed.
- Parameters:
targetScreen
- the screen to be activated.- Throws:
NotSupportedInElevationException
- if this method is called by an elevated action- See Also:
-
getExternalFile
Get the location of an external file that was packaged with the installer. Beans that define properties of typeExternalFile
can access those files at runtime. When the installer is started, an external file is located in a temporary directory. After the "Install files" action has run, the external file is also copied to the.install4j
directory in the installation directory.- Parameters:
externalFile
- the value of theExternalFile
propertyinstalledLocation
- iftrue
, this method returns the location in the.install4j
directory, otherwise the location in the temporary directory is returned. If called in an uninstaller, this argument has no effect and the location in the.install4j
directory will always be returned.- Returns:
- the resolved external file
-
getExternalFile
Get the location of a localized external file that was packaged with the installer. This will return file for the selected language as given bygetLanguageId()
. If no suitable localization exists, the file for the principal language is returned. The remaining behavior of this method is identical togetExternalFile(ExternalFile, boolean)
.- Parameters:
localizedExternalFile
- the value of theLocalizedExternalFile
propertyinstalledLocation
- iftrue
, this method returns the location in the.install4j
directory, otherwise the location in the temporary directory is returned. If called in an uninstaller, this argument has no effect and the location in the.install4j
directory will always be returned.- Returns:
- the resolved external file
-
isErrorOccurred
boolean isErrorOccurred()Determine if an error has occurred for any of the previous actions. After an action fails, this method returnstrue
. If the failure strategy of the failed action is configured in such a way that the execution of the installer continues, you might want to react to the error in a subsequent action.Note: This error flag is never cleared. You have to clear it manually with the
setErrorOccurred
method. If you want to make sure that the error originates in a certain range of actions, you have to add a "Run script" action just before that range and callcontext.setErrorOccurred(false)
in order to clear any earlier error.- Returns:
- if an error has occurred or not
- See Also:
-
setErrorOccurred
void setErrorOccurred(boolean errorOccurred) Clear or set the error flag that is described forisErrorOccurred
.- Parameters:
errorOccurred
- the new error flag- See Also:
-
registerResponseFileVariable
Register a variable that should be written to the response file when the installation is finished. Variables to which form components are bound are automatically registered as response file variables. Only strings, primitive wrappers, as well as string arrays, int arrays andjava.util.Date
values can be encoded in the response file.- Parameters:
variableName
- the variable name
-
unregisterResponseFileVariable
Reverses the action ofregisterResponseFileVariable(String)
. This also works for system installer variables that are written to the response file- Parameters:
variableName
- the variable name
-
registerResponseFileComment
Register a comment for a variable that is written to the response file. The comment can be a multi-line string. If non-empty lines do not start with a # character, the # character is prepended. Compiler variables, installer variables, and i18n variables are replaced in the comment string.- Parameters:
variableName
- the variable namecomment
- the comment. Setting a comment tonull
, removes the comment.- See Also:
-
registerHiddenVariable
Register a variable whose values should not be written to the installation log file. You can use this method for variables which contain passwords or other information that should not be saved to disk.- Parameters:
variableName
- the variable name
-
triggerReboot
void triggerReboot(boolean askUser) Triggers a reboot at the end of installation or uninstallation on Windows.- Parameters:
askUser
- if true, the user will be asked if he wants to perform a reboot.
-
isRebootRequired
boolean isRebootRequired()Returns whether a reboot is required on Windows.- Returns:
- if a reboot is required or not
-
finish
void finish(int exitCode) Quits the process in an ordered manner. All changes will be retained.- Parameters:
exitCode
- the exit code.
-
hasBeenElevated
boolean hasBeenElevated()Returns if the code is running in the elevated helper process started by the "Request privileges" action. In this case the code has full privileges, but it can interact with the GUI is a limited way, and some methods in this context will throw aNotSupportedInElevationException
.- Returns:
true
if elevated
-
runElevated
Execute an remoteCallable with full admin rights if possible.If the current process has full admin rights, the remoteCallable is executed in-process. Otherwise, if a 'require admin user' action and macOS or Windows Vista and higher has spawned a helper process with full rights, it is executed by this process.
Note: Do not interact with the GUI or call methods like
Util.showMessage(String)
in the code.- Parameters:
remoteCallable
- the remoteCallable to executealwaysExecute
- also execute the remoteCallable if it cannot be executed with full admin rights.- Returns:
- the object returned by
RemoteCallable.execute()
-
runUnelevated
Execute an remoteCallable with the rights of the original user that started the installer.If no elevation has been done by the 'require admin user' action, the remoteCallable is executed in-process. Otherwise, it is executed by the original process.
Note: Do not interact with the GUI or call methods like
Util.showMessage(String)
in the code.- Parameters:
remoteCallable
- the remoteCallable to execute- Returns:
- the object returned by
RemoteCallable.execute()
-
initializeLazilyCreatedScreens
void initializeLazilyCreatedScreens()Initialize all lazily created screens. Screens provided by install4j are not created lazily, so this method only has an effect, if you have custom screens that returntrue
fromScreen.isCreateLazily()
. -
addToClassPath
Add a JAR file or a classpath directory root to the classpath of the installer application. This method if useful if you have lazily created custom screens in your project and you have to add installed JAR files to the classpath before theScreen.createComponent()
is called.- Parameters:
file
- the JAR file or the classpath directory root- See Also:
-
getExtraCommandLineArguments
String[] getExtraCommandLineArguments()Returns an array with the command line arguments that were not recognized by install4j. The arguments are in the same order as specified on the command line. The options recognized by install4j are removed.This is useful if you want to provide switches for console or unattended installers without resorting to system properties (-Dname=value) or installer variables (-Vname=value).
- Returns:
- the command line arguments
-
getMediaFileId
String getMediaFileId()Returns the ID of the media file that was used to create this installer.- Returns:
- the media file ID
-
getVersion
String getVersion()Returns the version of the installer. For installer applications, this is the currently installed version.- Returns:
- the version
-
getApplicationName
String getApplicationName()Returns the name of the application. This is the same as thesys.fullName
installer variable on which all installer and i18n variables have been replaced.- Returns:
- the application name
-