Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.brooklyn.rest.api;
import io.swagger.annotations.Api;
import org.apache.brooklyn.rest.domain.PolicySummary;
import org.apache.brooklyn.rest.domain.Status;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.util.List;
import java.util.Map;
@Path("/applications/{application}/entities/{entity}/policies")
@Api("Entity Policies")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
/** @deprecated since 1.0.0 use AdjunctApi */
@Deprecated
public interface PolicyApi {
@GET
@ApiOperation(value = "Fetch the policies attached to a specific application entity (deprecated, use adjuncts/ endpoint instead)",
response = org.apache.brooklyn.rest.domain.PolicySummary.class,
responseContainer = "List")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Could not find application or entity")
})
public List list(
@ApiParam(value = "Application ID or name", required = true)
@PathParam("application") final String application,
@ApiParam(value = "Entity ID or name", required = true)
@PathParam("entity") final String entityToken);
// TODO support parameters ?show=value,summary&name=xxx
// (and in sensors class)
@GET
@Path("/current-state")
@ApiOperation(value = "Fetch policy states in batch", notes="Returns a map of policy ID to whether it is active (deprecated, use adjuncts/ endpoint instead)")
// FIXME method name -- this is nothing to do with config!
public Map batchConfigRead(
@ApiParam(value = "Application ID or name", required = true)
@PathParam("application") String application,
@ApiParam(value = "Entity ID or name", required = true)
@PathParam("entity") String entityToken) ;
@POST
@ApiOperation(value = "Add a policy", notes = "Returns a summary of the new policy (deprecated, use adjuncts/ endpoint instead)")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Could not find application or entity"),
@ApiResponse(code = 400, message = "Type is not a class implementing Policy")
})
public PolicySummary addPolicy(
@ApiParam(name = "application", value = "Application ID or name", required = true)
@PathParam("application") String application,
@ApiParam(name = "entity", value = "Entity ID or name", required = true)
@PathParam("entity") String entityToken,
@ApiParam(name = "policyType", value = "Class of policy to add", required = true)
@QueryParam("type")
String policyTypeName,
// TODO would like to make this optional but jersey complains if we do
@ApiParam(name = "config", value = "Configuration for the policy (as key value pairs)", required = true)
Map config);
@GET
@Path("/{policy}")
@ApiOperation(value = "Gets status of a policy (RUNNING / SUSPENDED) (deprecated, use adjuncts/ endpoint instead)")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Could not find application, entity or policy")
})
public Status getStatus(
@ApiParam(name = "application", value = "Application ID or name", required = true)
@PathParam("application") String application,
@ApiParam(name = "entity", value = "Entity ID or name", required = true)
@PathParam("entity") String entityToken,
@ApiParam(name = "policy", value = "Policy ID or name", required = true)
@PathParam("policy") String policyId);
@POST
@Path("/{policy}/start")
@ApiOperation(value = "Start or resume a policy (deprecated, use adjuncts/ endpoint instead)")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Could not find application, entity or policy")
})
public Response start(
@ApiParam(name = "application", value = "Application ID or name", required = true)
@PathParam("application") String application,
@ApiParam(name = "entity", value = "Entity ID or name", required = true)
@PathParam("entity") String entityToken,
@ApiParam(name = "policy", value = "Policy ID or name", required = true)
@PathParam("policy") String policyId);
@POST
@Path("/{policy}/stop")
@ApiOperation(value = "Suspends a policy (deprecated, use adjuncts/ endpoint instead)")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Could not find application, entity or policy")
})
public Response stop(
@ApiParam(name = "application", value = "Application ID or name", required = true)
@PathParam("application") String application,
@ApiParam(name = "entity", value = "Entity ID or name", required = true)
@PathParam("entity") String entityToken,
@ApiParam(name = "policy", value = "Policy ID or name", required = true)
@PathParam("policy") String policyId);
// TODO: Should be DELETE /policy, not POST /policy/destroy
@POST
@Path("/{policy}/destroy")
@ApiOperation(value = "Destroy a policy (deprecated, use adjuncts/ endpoint instead)", notes="Removes a policy from being associated with the entity and destroys it (stopping first if running)")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Could not find application, entity or policy")
})
public Response destroy(
@ApiParam(name = "application", value = "Application ID or name", required = true)
@PathParam("application") String application,
@ApiParam(name = "entity", value = "Entity ID or name", required = true)
@PathParam("entity") String entityToken,
@ApiParam(name = "policy", value = "Policy ID or name", required = true)
@PathParam("policy") String policyToken);
}