@GET
@Consumes("application/json")
@Produces("application/json")
publicStringretrieveAllCodeValues(@Context
jakarta.ws.rs.core.UriInfo uriInfo,
@PathParam("codeId")
Long codeId)
retrieveCodeValue
@GET
@Path("{codeValueId}")
@Consumes("application/json")
@Produces("application/json")
publicStringretrieveCodeValue(@Context
jakarta.ws.rs.core.UriInfo uriInfo,
@PathParam("codeValueId")
Long codeValueId,
@PathParam("codeId")
Long codeId)
createCodeValue
@POST
@Consumes("application/json")
@Produces("application/json")
publicStringcreateCodeValue(@PathParam("codeId")
Long codeId,
String apiRequestBodyAsJson)
updateCodeValue
@PUT
@Path("{codeValueId}")
@Consumes("application/json")
@Produces("application/json")
publicStringupdateCodeValue(@PathParam("codeId")
Long codeId,
@PathParam("codeValueId")
Long codeValueId,
String apiRequestBodyAsJson)
deleteCodeValue
@DELETE
@Path("{codeValueId}")
@Consumes("application/json")
@Produces("application/json")
publicStringdeleteCodeValue(@PathParam("codeId")
Long codeId,
@PathParam("codeValueId")
Long codeValueId)