Class ServerAppDistributionProps

java.lang.Object
com.iizix.prop.GProp<GProp<?>[]>
com.iizix.prop.PropCnr
com.iizix.server.app.prop.ServerAppDistributionProps
All Implemented Interfaces:
EventListener, IGProp<GProp<?>[]>, IPropCnr, Cloneable
Direct Known Subclasses:
AppDistributionProps

public class ServerAppDistributionProps extends PropCnr
Editor version of the container that holds the required settings for the server to operate and initialize itself with.
  • Field Details

  • Constructor Details

    • ServerAppDistributionProps

      public ServerAppDistributionProps()
      Creates the screen identification property container without a name. The name must be set in all cases using the setPropertyAtom call.
    • ServerAppDistributionProps

      public ServerAppDistributionProps(Atom propertyAtom)
      Creates the screen identification property container with the specified name. All system-reserved names for components begins with "$".
      Parameters:
      propertyAtom - the name of the component, unique within it's parent.
  • Method Details

    • setLoadedFile

      public void setLoadedFile(File file)
      Sets the .iiziApp file that loaded this property.
      Parameters:
      file - The file that loaded this property.
    • getProjectDir

      public File getProjectDir()
      Gets the project directory.
      Returns:
      The project directory.
    • clone

      Clone must be overridden.
      Overrides:
      clone in class PropCnr
    • setName

      public void setName(String name)
      Sets the app name.
      Parameters:
      name - The app name.
    • getName

      public String getName()
      Gets the app name.
      Returns:
      The app name, never null but could be empty string (illegal name).
    • setDescription

      public void setDescription(String descr)
      Sets the description.
      Parameters:
      descr - The description, or null to undefine it.
    • getDescription

      public String getDescription()
      Gets the description.
      Returns:
      The description or null if not defined.
    • setDestinationJar

      public void setDestinationJar(String destJar)
      Sets the destination Jar file.
      Parameters:
      destJar - The file name.
    • getDestinationJar

      public String getDestinationJar()
      Gets the destination Jar file name.
      Returns:
      The file name, or null if not defined.
    • doJarSign

      public boolean doJarSign()
      Flag to sign the Jar file.
      Returns:
      true by default, false if configured otherwise.
    • setJarSign

      public void setJarSign(boolean on)
      Sets the flag to sign the Jar file.
      Parameters:
      on - The flag.
    • doJarSeal

      public boolean doJarSeal()
      Flag to seal the Jar file.
      Returns:
      true by default, false if configured otherwise.
    • setJarSeal

      public void setJarSeal(boolean on)
      Sets the flag to seal the Jar file.
      Parameters:
      on - The flag.
    • doJarCompression

      public boolean doJarCompression()
      Flag to compress the Jar file.
      Returns:
      true by default, false if configured otherwise.
    • setJarCompression

      public void setJarCompression(boolean on)
      Sets the flag to compress the Jar file.
      Parameters:
      on - The flag.
    • doJarObfuscation

      public boolean doJarObfuscation()
      Flag to obfuscate the Jar file's Java source code.
      Returns:
      false by default, true if configured otherwise.
    • setJarObfuscation

      public void setJarObfuscation(boolean on)
      Sets the flag to obfuscate the Jar file's Java source code.
      Parameters:
      on - The flag.
    • doIncludeExternals

      public boolean doIncludeExternals()
      Flag to include external directories and libraries.
      Returns:
      true by default, false if configured otherwise.
    • setIncludeExternals

      public void setIncludeExternals(boolean doInclude)
      Sets the flag to include external directories and libraries.
      Parameters:
      doInclude - The flag.
    • doIncludeAppSource

      public boolean doIncludeAppSource()
      Flag to include external the App's source.

      This can be used e.g. for backup purposes.

      Returns:
      false by default, true if configured otherwise.
    • setIncludeAppSource

      public void setIncludeAppSource(boolean doInclude)
      Sets the flag to include the App's source.

      This can be used e.g. for backup purposes.

      Parameters:
      doInclude - The flag.
    • setOtherModules

      public void setOtherModules(String[] otherModules)
      Sets the Modules that should be included in the application, apart of the module this property belongs to.
      Parameters:
      otherModules - The other Module names that should make up the application.
    • getOtherModules

      public String[] getOtherModules()
      Gets the Modules that should be included in the application, apart of the module this property belongs to.
      Returns:
      The other Module names that should make up the application.
    • getGroupID

      public String getGroupID()
      Gets the Developer Group ID of the app.
      Returns:
      The developer Group ID, never null, but empty string for none.
    • getDeveloperID

      public String getDeveloperID()
      Gets the Developer ID of the app.
      Returns:
      The developer ID, never null, but empty string for none.
    • getAppID

      public String getAppID()
      Gets the App ID of the app. This ID is filled in automatically when registering a new app.
      Returns:
      The App ID, never null, but empty string for none.
    • doRegisterApp

      public boolean doRegisterApp()
      Gets the flag if the app should be registered with the license system.
      Returns:
      true for registration required, false otherwise.