public interface ClientRegistrationTrustedHostResource
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
create(ClientRegistrationTrustedHostRepresentation config) |
void |
delete(String hostName) |
ClientRegistrationTrustedHostRepresentation |
get(String hostName) |
List<ClientRegistrationTrustedHostRepresentation> |
list() |
javax.ws.rs.core.Response |
update(String hostName,
ClientRegistrationTrustedHostRepresentation config) |
@POST @Consumes(value="application/json") @Produces(value="application/json") javax.ws.rs.core.Response create(ClientRegistrationTrustedHostRepresentation config)
@PUT
@Path(value="{hostname}")
@Consumes(value="application/json")
@Produces(value="application/json")
javax.ws.rs.core.Response update(@PathParam(value="hostname")
String hostName,
ClientRegistrationTrustedHostRepresentation config)
@GET
@Path(value="{hostname}")
@Produces(value="application/json")
ClientRegistrationTrustedHostRepresentation get(@PathParam(value="hostname")
String hostName)
@GET @Produces(value="application/json") List<ClientRegistrationTrustedHostRepresentation> list()
@DELETE
@Path(value="{hostname}")
void delete(@PathParam(value="hostname")
String hostName)
Copyright © 2016 JBoss by Red Hat. All rights reserved.