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

ru.taskurotta.service.storage.BrokenProcessService Maven / Gradle / Ivy

package ru.taskurotta.service.storage;

import ru.taskurotta.service.console.model.BrokenProcess;
import ru.taskurotta.service.console.model.SearchCommand;

import java.util.Collection;
import java.util.UUID;

/**
 * User: stukushin
 * Date: 11.10.13
 * Time: 18:24
 */

public interface BrokenProcessService {

    public void save(BrokenProcess brokenProcess);

    public Collection find(SearchCommand searchCommand);

    public Collection findAll();

    public void delete(UUID processId);

    public void deleteCollection(Collection processIds);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy