mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-10 15:32:05 -03:30
Remove hardcoded references to jakarta package from JEE admin client
closes #27609 Signed-off-by: mposolda <mposolda@gmail.com>
This commit is contained in:
parent
fa12b14a32
commit
e7ff12e010
@ -90,12 +90,12 @@ public interface GroupResource {
|
||||
*
|
||||
* @param first
|
||||
* @param max
|
||||
* @param full
|
||||
* @param briefRepresentation
|
||||
*/
|
||||
@GET
|
||||
@Path("children")
|
||||
@Produces(jakarta.ws.rs.core.MediaType.APPLICATION_JSON)
|
||||
@Consumes(jakarta.ws.rs.core.MediaType.APPLICATION_JSON)
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
List<GroupRepresentation> getSubGroups(@QueryParam("first") Integer first, @QueryParam("max") Integer max, @QueryParam("briefRepresentation") Boolean briefRepresentation);
|
||||
|
||||
/**
|
||||
|
||||
@ -42,7 +42,7 @@ public interface UserProfileResource {
|
||||
|
||||
@GET
|
||||
@Path("/metadata")
|
||||
@Consumes(jakarta.ws.rs.core.MediaType.APPLICATION_JSON)
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
UserProfileMetadata getMetadata();
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user