All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.bdeploy.jersey.resources.ActionResource Maven / Gradle / Ivy

Go to download

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