BCI Class - StartInstallCustomActionData

Description

In BBj 13.0 and higher, this class extends the com.basis.install.BeforeInstallCustomActionData class and provides data and actions that can be utilized during installer start. An instance of this class is passed into the execute method of StartInstallCustomAction object during the start of the installation.

In BBj 14.0*, adds the ability to set features related to a Web Start certificate, keystore, etc.

Methods

Return Value

Method

Description

void

addCustomWizard(int p_index,CustomWizardp_wizard)

Adds a custom wizard to the BCI at the specified index.

void

setDialogsBackgroundImage(string p_image)

Sets the background image for the BCI dialogs.

void

setDialogsIconImage(string p_image)

Sets the icon image for the BCI dialogs.

void

setFeatureVisible(string p_feature, boolean p_visible)

Sets the passed feature to be visible or invisible.

void

setGenerateCertificate(boolean p_generateCertificate)

Sets to generate a certificate.*

void

setJettyHost(string p_JettyHost)

Sets the Jetty host name.*

void

setJettyPort(string p_JettyPort)

Sets the Jetty port.*

void

setKeystore(string p_keystore)

Sets the keystore.*

void

setKeystorePassword(string p_keystorePassword)

Sets the keystore password.*

void

setPrivateKey(string p_privateKey)

Sets a private key.*

void

setPrivateKeyPassword(string p_privateKeyPassword)

Sets a password for the private key.*

void

setUseCACertificate(boolean p_useCACertificate)

Sets to use a CA (Certificate Authority) certificate.*

void

setWizardsBackgroundImage(string p_image)

Sets the background image for the BCI wizards.

void

setWizardsIconImage(string p_image)

Sets the icon image for the BCI wizards.

void

setWizardsResizable(boolean p_resizable)

Specifies if the wizard windows are resizable.

void

setWizardScreenSize(int p_wizardScreen, int width, int height)

Sets the size of the specified wizard window.

void

setWizardsScreenSize(int width, int height)

Sets the size of the specified wizard window.

void

setYourCompanyName(string p_yourCompanyName)

Sets your company name.*

void

skipWizardScreen(int p_wizardScreen, boolean p_skip)

Skips the wizard screen.*

Methods of StartInstallCustomActionData inherited from BeforeInstallCustomActionData

Methods of StartInstallCustomActionData inherited from InstallCustomActionData

Methods of StartInstallCustomActionData inherited from CustomActionData

See Also

BCI Class - BeforeInstallCustomActionData

BCI Class - InstallCustomActionData

BCI Class - CustomActionData

BCI Class - CustomWizard

BCI Interface - StartInstallCustomAction