Class Deployer
- java.lang.Object
-
- fish.payara.arquillian.microdeployer.Deployer
-
@RequestScoped @Path("/application") public class Deployer extends Object
-
-
Constructor Summary
Constructors Constructor Description Deployer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonObjectdeploy(String name, InputStream archive)voidundeploy(String name)
-
-
-
Method Detail
-
deploy
@Path("/{name}") @Consumes("application/octet-stream") @PUT public JsonObject deploy(@PathParam("name") String name, InputStream archive) throws Throwable
- Throws:
Throwable
-
undeploy
@Path("/{name}") @DELETE public void undeploy(@PathParam("name") String name)
-
-