Package com.zerog.ia.auto.project
Class MacOSPlatform
- java.lang.Object
-
- com.zerog.ia.auto.project.MacOSPlatform
-
public final class MacOSPlatform extends java.lang.ObjectThe Mac OS X platform specific settings, like installer authenticator and file permissions.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetAuthenticationAlwaysShowGUI()Whether or not the Mac installer always requires GUI authentication dialog.MacJavaVersiongetJvmForLaunchAnywhere()The Java VM version for LaunchAnywhere actions installed on the Mac OS X platform.java.lang.StringgetMacOSXPermissions()The default Mac OS X file permissions.booleangetRequiresAuthentication()Whether or not the Mac installer requires authentication.voidsetAuthenticationAlwaysShowGUI(boolean AuthenticationAlwaysShowGUI)Whether or not the Mac installer always requires GUI authentication dialog.voidsetJvmForLaunchAnywhere(MacJavaVersion JvmForLaunchAnywhere)The Java VM version for LaunchAnywhere actions installed on the Mac OS X platform.voidsetMacOSXPermissions(java.lang.String permissions)The default Mac OS X file permissions.voidsetRequiresAuthentication(boolean RequiresAuthentication)Whether or not the Mac installer requires authentication.
-
-
-
Method Detail
-
getMacOSXPermissions
public java.lang.String getMacOSXPermissions()
The default Mac OS X file permissions. Example: 755 (default). Represents the default permissions for all files the installer deploys.
-
setMacOSXPermissions
public void setMacOSXPermissions(java.lang.String permissions)
The default Mac OS X file permissions. Example: 755 (default). Represents the default permissions for all files the installer deploys.
-
getRequiresAuthentication
public boolean getRequiresAuthentication()
Whether or not the Mac installer requires authentication.
-
setRequiresAuthentication
public void setRequiresAuthentication(boolean RequiresAuthentication)
Whether or not the Mac installer requires authentication.
-
getAuthenticationAlwaysShowGUI
public boolean getAuthenticationAlwaysShowGUI()
Whether or not the Mac installer always requires GUI authentication dialog.
-
setAuthenticationAlwaysShowGUI
public void setAuthenticationAlwaysShowGUI(boolean AuthenticationAlwaysShowGUI)
Whether or not the Mac installer always requires GUI authentication dialog.
-
getJvmForLaunchAnywhere
public MacJavaVersion getJvmForLaunchAnywhere()
The Java VM version for LaunchAnywhere actions installed on the Mac OS X platform.
-
setJvmForLaunchAnywhere
public void setJvmForLaunchAnywhere(MacJavaVersion JvmForLaunchAnywhere)
The Java VM version for LaunchAnywhere actions installed on the Mac OS X platform.
-
-