[
https://jira.jboss.org/browse/SHRINKWRAP-167?page=com.atlassian.jira.plug...
]
Andrew Lee Rubinger resolved SHRINKWRAP-167.
--------------------------------------------
Resolution: Done
Create a ShrinkWrapDeployer for VDF
-----------------------------------
Key: SHRINKWRAP-167
URL:
https://jira.jboss.org/browse/SHRINKWRAP-167
Project: ShrinkWrap
Issue Type: Feature Request
Components: ext-vdf
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/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira