Interface IAppContainer


  • public interface IAppContainer
    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.
    • Method Detail

      • getMimeType

        java.lang.String getMimeType​(java.lang.String fileName)
      • addMimeType

        void addMimeType​(java.lang.String extension,
                         java.lang.String type)
      • registerAdminAction

        void registerAdminAction​(AdminAction adminAction)
      • registerMonitoringAction

        void registerMonitoringAction​(AdminAction monitoringAction)
      • registerWebSocketEndpoint

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

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