Interface BBjAdminWebAppServer_1500

All Superinterfaces:
BBjAdminCommitPropertyWriter, BBjAdminCommitWriter, BBjAdminPropertyReader, BBjAdminPropertyWriter, BBjAdminWebAppServer, Remote, Serializable
All Known Subinterfaces:
BBjAdminWebAppServer_1700

public interface BBjAdminWebAppServer_1500 extends BBjAdminWebAppServer
This is the interface for configuring the Web App Server.
  • Method Details

    • getContextNames

      BBjAdminList<String> getContextNames() throws BBjAdminException
      Returns a list of all the available contexts on the web server.
      Returns:
      List of all the available contexts.
      Throws:
      BBjAdminException
    • createContext

      BBjAdminContextInfo createContext(String p_contextName) throws BBjAdminException
      Creates a new custom context on the web server. Changes are do not take effect until calling commit().
      Parameters:
      p_contextName - Name of the context to create.
      Returns:
      The new context created.
      Throws:
      BBjAdminException
    • removeContext

      void removeContext(String p_context) throws BBjAdminException
      Removes the specified custom context. Changes are do not take effect until calling commit().
      Parameters:
      p_context -
      Throws:
      BBjAdminException
    • getContextInfo

      BBjAdminContextInfo getContextInfo(String p_contextName) throws BBjAdminException
      Returns the context info for the specified context.
      Parameters:
      p_contextName - Name of context to get info for.
      Returns:
      Returns the specified context or throws an exception if it is not valid.
      Throws:
      BBjAdminException - If the context is not valid.
    • getSSLNames

      BBjAdminList<String> getSSLNames() throws BBjAdminException
      Returns a list of all the available SSL PORTs on the web server.
      Returns:
      List of all the available contexts.
      Throws:
      BBjAdminException
    • getSSLInfo

      BBjAdminSSLInfo getSSLInfo(String p_port) throws BBjAdminException
      Returns the specified SSL info.
      Parameters:
      p_port - the PORT of the SSL entry to get.
      Returns:
      Returns the specified SSL entry or throws an exception if it is not valid.
      Throws:
      BBjAdminException - If the context is not valid.
    • removeSSL

      void removeSSL(String p_port) throws BBjAdminException
      Removes the specified SSL entry. Changes are do not take effect until calling commit().
      Parameters:
      p_port -
      Throws:
      BBjAdminException
    • createSSL

      BBjAdminSSLInfo createSSL(String p_port) throws BBjAdminException
      Creates a new custom SSL entry with the specified PORT on the web server. Changes are do not take effect until calling commit().
      Parameters:
      p_port - The PORT number for the SSL entry.
      Returns:
      The new SSL entry created.
      Throws:
      BBjAdminException