public class EntitlementService extends Object
| Constructor and Description |
|---|
EntitlementService(AuthorizationProvider authorization) |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
authorizePreFlight(String resourceServerId) |
void |
get(String resourceServerId,
EntitlementRequest entitlementRequest,
javax.ws.rs.container.AsyncResponse asyncResponse) |
void |
getAll(String resourceServerId,
javax.ws.rs.container.AsyncResponse asyncResponse) |
public EntitlementService(AuthorizationProvider authorization)
@Path(value="{resource_server_id}")
@OPTIONS
public javax.ws.rs.core.Response authorizePreFlight(@PathParam(value="resource_server_id")
String resourceServerId)
@Path(value="{resource_server_id}")
@GET
@Produces(value="application/json")
@Consumes(value="application/json")
public void getAll(@PathParam(value="resource_server_id")
String resourceServerId,
@Suspended
javax.ws.rs.container.AsyncResponse asyncResponse)
@Path(value="{resource_server_id}")
@POST
@Consumes(value="application/json")
@Produces(value="application/json")
public void get(@PathParam(value="resource_server_id")
String resourceServerId,
EntitlementRequest entitlementRequest,
@Suspended
javax.ws.rs.container.AsyncResponse asyncResponse)
Copyright © 2016 JBoss by Red Hat. All rights reserved.