Interface TimePoliciesResource
- 
 public interface TimePoliciesResource- Author:
- Pedro Igor
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Responsecreate(TimePolicyRepresentation representation)TimePolicyResourcefindById(String id)TimePolicyRepresentationfindByName(String name)
 
- 
- 
- 
Method Detail- 
create@POST @Consumes("application/json") @Produces("application/json") javax.ws.rs.core.Response create(TimePolicyRepresentation representation)
 - 
findById@Path("{id}") TimePolicyResource findById(@PathParam("id") String id)
 - 
findByName@Path("/search") @GET @Produces("application/json") TimePolicyRepresentation findByName(@QueryParam("name") String name)
 
- 
 
-