com.netgrif.application.engine.elastic.service.interfaces.IElasticTaskService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.elastic.service.interfaces;
import com.netgrif.application.engine.auth.domain.LoggedUser;
import com.netgrif.application.engine.elastic.domain.ElasticTask;
import com.netgrif.application.engine.elastic.web.requestbodies.ElasticTaskSearchRequest;
import com.netgrif.application.engine.workflow.domain.Task;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.scheduling.annotation.Async;
import java.util.List;
import java.util.Locale;
import java.util.Map;
public interface IElasticTaskService {
Map fullTextFields();
@Async
void index(ElasticTask task);
void indexNow(ElasticTask task);
Page search(List requests, LoggedUser user, Pageable pageable, Locale locale, Boolean isIntersection);
long count(List requests, LoggedUser user, Locale locale, Boolean isIntersection);
void remove(String taskId);
void removeByPetriNetId(String petriNetId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy