io.bdeploy.jersey.resources.ActionResourceImpl 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.
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