Interface ClientsResource
public interface ClientsResource
- Author:
 - rodrigo.sasaki@icarros.com.br
 
- 
Method Summary
 
- 
Method Details
- 
get
 - 
create
@POST @Consumes("application/json") jakarta.ws.rs.core.Response create(ClientRepresentation clientRepresentation)  - 
findAll
 - 
findAll
@GET @Produces("application/json") List<ClientRepresentation> findAll(@QueryParam("viewableOnly") boolean viewableOnly)  - 
findAll
 - 
findByClientId
@GET @Produces("application/json") List<ClientRepresentation> findByClientId(@QueryParam("clientId") String clientId)  - 
query
@GET @Produces("application/json") List<ClientRepresentation> query(@QueryParam("q") String searchQuery)  
 -