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

io.bdeploy.jersey.resources.ActionResourceImpl 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 io.bdeploy.jersey.actions.ActionService;
import jakarta.inject.Inject;

public class ActionResourceImpl implements ActionResource {

    @Inject
    private ActionService actions;

    @Override
    public List getActions(String group, String instance) {
        return actions.getRunningActions(group, instance);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy