Remove hardcoded references to jakarta package from JEE admin client

closes #27609

Signed-off-by: mposolda <mposolda@gmail.com>
This commit is contained in:
mposolda 2024-03-06 16:28:05 +01:00 committed by Marek Posolda
parent fa12b14a32
commit e7ff12e010
2 changed files with 4 additions and 4 deletions

View file

@ -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);
/**

View file

@ -42,7 +42,7 @@ public interface UserProfileResource {
@GET
@Path("/metadata")
@Consumes(jakarta.ws.rs.core.MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
UserProfileMetadata getMetadata();
/**