public interface ClientsResource
| Modifier and Type | Method and Description |
|---|---|
void |
create(ClientRepresentation clientRepresentation) |
List<ClientRepresentation> |
findAll() |
ClientResource |
get(String clientId) |
@Path(value="{clientId}")
ClientResource get(@PathParam(value="clientId")
String clientId)
@POST @Consumes(value="application/json") void create(ClientRepresentation clientRepresentation)
@GET @Produces(value="application/json") List<ClientRepresentation> findAll()
Copyright © 2015 JBoss by Red Hat. All rights reserved.