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

de.uni.freiburg.iig.telematik.sepia.petrinet.ifnet.DeclassificationTransition Maven / Gradle / Ivy

Go to download

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.petrinet.ifnet;

import de.uni.freiburg.iig.telematik.sepia.petrinet.ifnet.abstr.AbstractDeclassificationTransition;


public class DeclassificationTransition extends AbstractDeclassificationTransition{
	
	private static final long serialVersionUID = 7856785255356077316L;

//	protected DeclassificationTransition(){
//		super();
//	}
	
	public DeclassificationTransition(String name, String label, boolean isEmpty) {
		super(name, label, isEmpty);
	}

	public DeclassificationTransition(String name, boolean isEmpty) {
		this(name, name, isEmpty);
	}

	public DeclassificationTransition(String name, String label) {
		this(name, label, false);
	}

	public DeclassificationTransition(String name) {
		this(name, name, false);
	}

	@Override
	protected DeclassificationTransition newInstance(String name) {
		return new DeclassificationTransition(name);
	}

	@Override
	public DeclassificationTransition clone() {
		return (DeclassificationTransition) super.clone();
	}

	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy