public interface UserPoliciesResource
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
create(UserPolicyRepresentation representation) |
UserPolicyResource |
findById(String id) |
UserPolicyRepresentation |
findByName(String name) |
@POST @Consumes(value="application/json") @Produces(value="application/json") javax.ws.rs.core.Response create(UserPolicyRepresentation representation)
@Path(value="{id}") UserPolicyResource findById(@PathParam(value="id") String id)
@Path(value="/search") @GET @Produces(value="application/json") UserPolicyRepresentation findByName(@QueryParam(value="name") String name)
Copyright © 2021 JBoss by Red Hat. All rights reserved.