Interface IAppServerDeployer

  • All Known Implementing Classes:
    GenericApplicationServerManager

    public interface IAppServerDeployer
    Defines the method a deployer of application server resources must implement.
    Since:
    4.0.7
    Version:
    $Revision: 4963 $ $Date: 2006-11-03 14:45:45 -0300 (Fri, 03 Nov 2006) $
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void deployWar​(java.util.zip.ZipFile warFile, java.lang.String contextPath)
      Deploys the given war file to the specified context path.
      void redeployWar​(java.util.zip.ZipFile warFile, java.lang.String contextPath)
      Redeploy the given war file to the specified context path.
      void undeployWar​(java.lang.String contextPath)
      Undeploys the war at the specified context path.
    • Method Detail

      • deployWar

        void deployWar​(java.util.zip.ZipFile warFile,
                       java.lang.String contextPath)
                throws PortalException
        Deploys the given war file to the specified context path.
        Parameters:
        warFile - the war file.
        contextPath - the context path.
        Throws:
        PortalException
        Since:
        4.0.7
      • redeployWar

        void redeployWar​(java.util.zip.ZipFile warFile,
                         java.lang.String contextPath)
                  throws PortalException
        Redeploy the given war file to the specified context path.
        Parameters:
        warFile - the war file.
        contextPath - the context path.
        Throws:
        PortalException
        Since:
        4.0.7
      • undeployWar

        void undeployWar​(java.lang.String contextPath)
                  throws PortalException
        Undeploys the war at the specified context path.
        Parameters:
        contextPath - the context path.
        Throws:
        PortalException
        Since:
        4.0.7