All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.arquillian.api.ArchiveDeployer Maven / Gradle / Ivy

package org.jboss.arquillian.api;

import org.jboss.shrinkwrap.api.Archive;

/**
 * An archive deployer
 *
 * An instance of this object can be injected into an test case like this
 *
 * 
 * @Inject
 * ArchiveDeployer deployer;
 * 
 *
 * @author [email protected]
 * @since 16-Feb-2011
 */
public interface ArchiveDeployer {

    String deploy(Archive archive) throws Exception;

    void undeploy(String runtimeName) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy