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
2 changed files with 4 additions and 4 deletions
|
@ -90,12 +90,12 @@ public interface GroupResource {
|
||||||
*
|
*
|
||||||
* @param first
|
* @param first
|
||||||
* @param max
|
* @param max
|
||||||
* @param full
|
* @param briefRepresentation
|
||||||
*/
|
*/
|
||||||
@GET
|
@GET
|
||||||
@Path("children")
|
@Path("children")
|
||||||
@Produces(jakarta.ws.rs.core.MediaType.APPLICATION_JSON)
|
@Produces(MediaType.APPLICATION_JSON)
|
||||||
@Consumes(jakarta.ws.rs.core.MediaType.APPLICATION_JSON)
|
@Consumes(MediaType.APPLICATION_JSON)
|
||||||
List<GroupRepresentation> getSubGroups(@QueryParam("first") Integer first, @QueryParam("max") Integer max, @QueryParam("briefRepresentation") Boolean briefRepresentation);
|
List<GroupRepresentation> getSubGroups(@QueryParam("first") Integer first, @QueryParam("max") Integer max, @QueryParam("briefRepresentation") Boolean briefRepresentation);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -42,7 +42,7 @@ public interface UserProfileResource {
|
||||||
|
|
||||||
@GET
|
@GET
|
||||||
@Path("/metadata")
|
@Path("/metadata")
|
||||||
@Consumes(jakarta.ws.rs.core.MediaType.APPLICATION_JSON)
|
@Consumes(MediaType.APPLICATION_JSON)
|
||||||
UserProfileMetadata getMetadata();
|
UserProfileMetadata getMetadata();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue