Interface IAppContainer


@Deprecated public interface IAppContainer
Deprecated.
since 10.18. This interface will be removed in Mendix 11. There is no replacement.
This interface is meant for internal use only.

The AppContainer is responsible for the first steps when starting a Mendix app. This includes checking the JDK version, starting the admin action handler, and registering the available admin actions.
  • Field Details

    • EXIT_CODE_WOOT

      static final int EXIT_CODE_WOOT
      Deprecated.
      See Also:
    • EXIT_CODE_UNKNOWN_ERROR

      static final int EXIT_CODE_UNKNOWN_ERROR
      Deprecated.
      See Also:
    • EXIT_CODE_ADMIN_PORT_IN_USE

      static final int EXIT_CODE_ADMIN_PORT_IN_USE
      Deprecated.
      See Also:
    • EXIT_CODE_RUNTIME_PORT_IN_USE

      static final int EXIT_CODE_RUNTIME_PORT_IN_USE
      Deprecated.
      See Also:
    • EXIT_CODE_INVALID_JDK_VERSION

      static final int EXIT_CODE_INVALID_JDK_VERSION
      Deprecated.
      See Also:
    • EXIT_CODE_INVALID_CONFIG

      static final int EXIT_CODE_INVALID_CONFIG
      Deprecated.
      See Also:
    • EXIT_CODE_DATABASE_NEEDS_UPDATE

      static final int EXIT_CODE_DATABASE_NEEDS_UPDATE
      Deprecated.
      See Also:
  • Method Details

    • getRuntime

      IMxRuntime getRuntime()
      Deprecated.
    • getMimeType

      String getMimeType(String fileName)
      Deprecated.
    • addMimeType

      void addMimeType(String extension, String type)
      Deprecated.
    • registerAdminAction

      void registerAdminAction(AdminAction adminAction)
      Deprecated.
    • registerMonitoringAction

      void registerMonitoringAction(AdminAction monitoringAction)
      Deprecated.
    • registerWebSocketEndpoint

      void registerWebSocketEndpoint(String path, javax.websocket.Endpoint endpoint) throws javax.websocket.DeploymentException
      Deprecated.
      Throws:
      javax.websocket.DeploymentException
    • shutdownAdminHandler

      void shutdownAdminHandler() throws Exception
      Deprecated.
      Stops the admin action handler and exits the JVM.
      Throws:
      Exception