io.bdeploy.jersey.resources.ActionResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Public API including dependencies, ready to be used for integrations and plugins.
The newest version!
package io.bdeploy.jersey.resources;
import java.util.List;
import io.bdeploy.jersey.actions.ActionBroadcastDto;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.QueryParam;
import jakarta.ws.rs.core.MediaType;
@Path("/actions")
@Produces(MediaType.APPLICATION_JSON)
public interface ActionResource {
@GET
public List getActions(@QueryParam("group") String group, @QueryParam("instance") String instance);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy