Interface RealmsResource
-
@Path("/admin/realms") @Consumes("application/json") public interface RealmsResource
- Author:
- rodrigo.sasaki@icarros.com.br
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(RealmRepresentation realmRepresentation)
List<RealmRepresentation>
findAll()
RealmResource
realm(String realm)
-
-
-
Method Detail
-
realm
@Path("/{realm}") RealmResource realm(@PathParam("realm") String realm)
-
create
@POST @Consumes("application/json") void create(RealmRepresentation realmRepresentation)
-
findAll
@GET @Produces("application/json") List<RealmRepresentation> findAll()
-
-