[shrinkwrap-issues] [JBoss JIRA] Created: (SHRINKWRAP-167) Create a ShrinkWrapDeployer for VDF

Andrew Lee Rubinger (JIRA) jira-events at lists.jboss.org
Mon May 10 14:47:05 EDT 2010


Create a ShrinkWrapDeployer for VDF
-----------------------------------

                 Key: SHRINKWRAP-167
                 URL: https://jira.jboss.org/jira/browse/SHRINKWRAP-167
             Project: ShrinkWrap
          Issue Type: Feature Request
            Reporter: Andrew Lee Rubinger
            Assignee: Andrew Lee Rubinger
             Fix For: 1.0.0-alpha-10


Create a simplified API facade atop VDF to accept ShrinkWrap archives for deployment/undeployment.  ie:

   /**
    * Deploys the specified archives into the Virtual Deployment Framework
    * as an atomic operation.  
    * 
    * @param archives The archives to deploy
    * @throws IllegalArgumentException If the archives are not specified (null)
    * @throws DeploymentException If an error occurred in deployment
    */
   void deploy(Archive<?>... archives) throws IllegalArgumentException, DeploymentException;
 
   /**
    * Undeploys the specified archives from the Virtual Deployment Framework.  Each
    * archive must have been previously deployed in via this {@link ShrinkWrapDeployer}
    * instance, else it will be ignored and logged as a warning.
    * 
    * @param archives The archives to undeploy
    * @throws IllegalArgumentException If the archives are not specified
    * @throws DeploymentException If an error occurred during undeployment
    */
   void undeploy(Archive<?>... archives) throws IllegalArgumentException, DeploymentException;

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the shrinkwrap-issues mailing list