de.uni.freiburg.iig.telematik.sewol.parser.LogParserInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SEWOL Show documentation
Show all versions of SEWOL Show documentation
SEWOL provides support for the handling of workflow traces. Specifically it allows to specify the shape and content of process traces in terms of entries representing the execution of a specific workflow activity. SEWOL also allows to write these traces on disk as a log file with the help of a special file writer for process logs. Currently it supports plain text, Petrify, MXML and XES log file types. In order to specify security-related context information, SEWOL provides access control models such as access control lists (ACL) and role-based access control models (RBAC). All types of models can be conveniently edited with the help of appropriate dialogs.
The newest version!
package de.uni.freiburg.iig.telematik.sewol.parser;
import java.io.File;
import java.io.IOException;
import java.util.List;
import de.invation.code.toval.parser.ParserException;
import de.invation.code.toval.validate.ParameterException;
import de.uni.freiburg.iig.telematik.sewol.log.LogEntry;
import de.uni.freiburg.iig.telematik.sewol.log.LogSummary;
import de.uni.freiburg.iig.telematik.sewol.log.LogTrace;
import java.io.InputStream;
public interface LogParserInterface {
public List>> parse(File file, ParsingMode parsingMode) throws IOException, ParserException;
public List>> parse(String filePath, ParsingMode parsingMode) throws IOException, ParserException;
public List>> parse(InputStream inputStream, ParsingMode parsingMode) throws ParameterException, ParserException;
public List> getParsedLog(int index);
public List> getFirstParsedLog();
public LogSummary getSummary(int index);
public LogSummary getSummaryForFirstParsedLog();
}