Package org.rhq.enterprise.server.rest.domain

Examples of org.rhq.enterprise.server.rest.domain.BooleanValue


    @Path("/deploy/{handle}")
    @ApiOperation("Checks whether the deployment to the agents identified by the provided handle has finished or not.")
    public Response isUpdateFinished(@ApiParam("The deploy handle") @PathParam("handle") String handle,
        @Context HttpHeaders headers) {

        BooleanValue ret = new BooleanValue(pluginManager.isPluginUpdateOnAgentsFinished(caller, handle));

        return withMediaType(Response.ok(ret), headers).build();
    }
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.server.rest.domain.BooleanValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.