Package ai.wanaku.cli.main.services
Interface ForwardsService
@Path("/api/v1/forwards")
public interface ForwardsService
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.ResponseaddForward(ForwardReference reference) org.jboss.resteasy.reactive.RestResponse<WanakuResponse<List<ForwardReference>>> jakarta.ws.rs.core.ResponseremoveForward(ForwardReference reference)
-
Method Details
-
addForward
@Path("/add") @POST @Produces("application/json") jakarta.ws.rs.core.Response addForward(ForwardReference reference) -
removeForward
@Path("/remove") @PUT @Produces("application/json") jakarta.ws.rs.core.Response removeForward(ForwardReference reference) -
listForwards
@Path("/list") @GET @Produces("application/json") org.jboss.resteasy.reactive.RestResponse<WanakuResponse<List<ForwardReference>>> listForwards()
-