@Path(value="/admin/realms")
@Consumes(value="application/json")
public interface RealmsResource
| Modifier and Type | Method and Description |
|---|---|
void |
create(RealmRepresentation realmRepresentation) |
List<RealmRepresentation> |
findAll() |
RealmResource |
realm(String realm) |
@Path(value="/{realm}")
RealmResource realm(@PathParam(value="realm")
String realm)
@POST @Consumes(value="application/json") void create(RealmRepresentation realmRepresentation)
@GET @Produces(value="application/json") List<RealmRepresentation> findAll()
Copyright © 2021 JBoss by Red Hat. All rights reserved.