Interface AggregatePoliciesResource
-
public interface AggregatePoliciesResource
- Author:
- Pedro Igor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
create(AggregatePolicyRepresentation representation)
AggregatePolicyResource
findById(String id)
AggregatePolicyRepresentation
findByName(String name)
-
-
-
Method Detail
-
create
@POST @Consumes("application/json") @Produces("application/json") javax.ws.rs.core.Response create(AggregatePolicyRepresentation representation)
-
findById
@Path("{id}") AggregatePolicyResource findById(@PathParam("id") String id)
-
findByName
@Path("/search") @GET @Produces("application/json") AggregatePolicyRepresentation findByName(@QueryParam("name") String name)
-
-