Interface AggregatePoliciesResource
- 
 public interface AggregatePoliciesResource- Author:
- Pedro Igor
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Responsecreate(AggregatePolicyRepresentation representation)AggregatePolicyResourcefindById(String id)AggregatePolicyRepresentationfindByName(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)
 
- 
 
-