Package lumis.portal.deployment
Class GenericWarDeployer
- java.lang.Object
-
- lumis.portal.deployment.GenericWarDeployer
-
- All Implemented Interfaces:
IPortalDeployer
@Deprecated public class GenericWarDeployer extends Object implements IPortalDeployer
Deprecated.Since 5.0.0 the use ofIPortalDeployer
has been deprecated.Generic deployment of a WAR file. Just do the deployment to the application server, without any portal-related feature.- Since:
- 4.0.7
- Version:
- $Revision: 12710 $ $Date: 2011-03-18 17:00:16 -0300 (Fri, 18 Mar 2011) $
-
-
Constructor Summary
Constructors Constructor Description GenericWarDeployer()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
canHandle(DeployConfig deployConfig)
Deprecated.Informs if this deployer can handle the specified deployment.void
deploy(SessionConfig sessionConfig, DeployConfig deployConfig)
Deprecated.Do the specified deployment into the portal.String
getCustomDeploymentInterfaceId(DeployConfig deployConfig)
Deprecated.Returns the service interface id to be called when the deployment will use this deployer.
-
-
-
Method Detail
-
canHandle
public boolean canHandle(DeployConfig deployConfig)
Deprecated.Description copied from interface:IPortalDeployer
Informs if this deployer can handle the specified deployment.- Specified by:
canHandle
in interfaceIPortalDeployer
- Parameters:
deployConfig
- deploy configuration.- Returns:
- true if the deployer can handle the given deploy file, false otherwise.
-
deploy
public void deploy(SessionConfig sessionConfig, DeployConfig deployConfig) throws PortalException
Deprecated.Description copied from interface:IPortalDeployer
Do the specified deployment into the portal.- Specified by:
deploy
in interfaceIPortalDeployer
- Parameters:
sessionConfig
- the user session information.deployConfig
- the deploy specification.- Throws:
PortalException
-
getCustomDeploymentInterfaceId
public String getCustomDeploymentInterfaceId(DeployConfig deployConfig) throws PortalException
Deprecated.Description copied from interface:IPortalDeployer
Returns the service interface id to be called when the deployment will use this deployer. This gives the opportunity for the deployer to ask the user for its own custom options.- Specified by:
getCustomDeploymentInterfaceId
in interfaceIPortalDeployer
- Parameters:
deployConfig
- the deployment specification.- Returns:
- the service interface id, or null if the is no custom interface.
- Throws:
PortalException
-
-