de.uni.freiburg.iig.telematik.sepia.mg.cpn.AbstractCPNMarkingGraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SEPIA Show documentation
Show all versions of SEPIA Show documentation
SEPIA provides implementations for various types of Petri nets. Along Place/Transition-nets, it supports Petri nets with distinguishable token colors and defines coloured workflow nets, where coloured tokens are interpreted as data elements used during process execution. To support information flow analysis of processes, SEPIA defines so-called IF-Nets, tailored for security-oriented workflow modeling which enable users to assign security-levels (HIGH, LOW) to transitions, data elements and persons/agents participating in the process execution.
The newest version!
package de.uni.freiburg.iig.telematik.sepia.mg.cpn;
import java.util.Collection;
import de.invation.code.toval.types.Multiset;
import de.uni.freiburg.iig.telematik.sepia.mg.abstr.AbstractMarkingGraph;
import de.uni.freiburg.iig.telematik.sepia.petrinet.cpn.abstr.AbstractCPNMarking;
public abstract class AbstractCPNMarkingGraph,
Y extends AbstractCPNMarkingGraphRelation>
extends AbstractMarkingGraph,X,Y> {
private static final long serialVersionUID = -33599899300156648L;
public AbstractCPNMarkingGraph() {
super();
}
public AbstractCPNMarkingGraph(Collection states, Collection events) {
super(states, events);
}
public AbstractCPNMarkingGraph(Collection states) {
super(states);
}
public AbstractCPNMarkingGraph(String name, Collection states, Collection events) {
super(name, states, events);
}
public AbstractCPNMarkingGraph(String name, Collection states) {
super(name, states);
}
public AbstractCPNMarkingGraph(String name) {
super(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy