use of jakarta.ws.rs.ext.RuntimeDelegate in project jaxrs-api by eclipse-ee4j.
the class ReturnTypeTest method nullEntityResponse.
@GET
@Path("nullEntityResponse")
public Response nullEntityResponse() {
RuntimeDelegate rd = RuntimeDelegate.getInstance();
ResponseBuilder rb = rd.createResponseBuilder();
return rb.entity(null).build();
}
Aggregations