Class AppDefinition


  • public class AppDefinition
    extends java.lang.Object
    Application definition when loading the applications/projects.
    Author:
    Christopher Mindus
    • Field Summary

      Fields 
      Modifier and TypeFieldDescription
      java.lang.Stringid
      The ID of the application.
    • Constructor Summary

      Constructors 
      ConstructorDescription
      AppDefinition​(java.lang.String id, java.lang.String serverEnvironmentName, java.io.File iiziAppFile, boolean doHotDeploy)
      Constructor.
    • Field Detail

      • id

        public final java.lang.String id
        The ID of the application.
    • Constructor Detail

      • AppDefinition

        public AppDefinition​(java.lang.String id,
                             java.lang.String serverEnvironmentName,
                             java.io.File iiziAppFile,
                             boolean doHotDeploy)
        Constructor.
        Parameters:
        id - The application ID.
        serverEnvironmentName - The server environment name to use, null for default.
        iiziAppFile - The application file.
        doHotDeploy - Hot deploy flag.
    • Method Detail

      • dispose

        public void dispose()
        Disposes of the application definition.

        This method is intended to be called from the server: DO NOT CALL THIS METHOD.

      • getFactory

        public AppFactory getFactory()
        Gets the application factory.
        Returns:
        The application factory once loaded, null otherwise.
      • addModuleDirectory

        public void addModuleDirectory​(java.io.File dir)
                                throws java.io.IOException
        Adds a directory for loading.
        Parameters:
        dir - The Module directory to load.
        Throws:
        java.io.IOException - if the directory is already added, or if the application definition is a compiled application.
      • hasAppChanged

        public boolean hasAppChanged()
        Checks if the iiziApp has been changed and needs reload.
        Returns:
        true if app has changed and hot deploy is used, false when not changed or hot deploy is not used.
      • getServerEnvironmentName

        public java.lang.String getServerEnvironmentName()
        Returns the Server environment for the application.
      • isHotDeployEnabled

        public boolean isHotDeployEnabled()
        Checks if hot deploy is used for this application.
        Returns:
        true if hot deploy is enabled, false otherwise.
      • disposeHotDeploy

        public void disposeHotDeploy()
        Disposes of the application's hot deploy.
      • getAppSessionFileProvider

        public WSFileProvider getAppSessionFileProvider()
                                                 throws java.io.IOException
        Get the web server file provider for the application session.
        Returns:
        The web server file provider.
        Throws:
        java.io.IOException - If the directory for the application session files failed to be created.
        java.lang.IllegalStateException - If the application is not yet loaded or is disposed of.