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

com.atomikos.finitestates.FSMEnterEvent Maven / Gradle / Ivy

/**
 * Copyright (C) 2000-2023 Atomikos 
 *
 * LICENSE CONDITIONS
 *
 * See http://www.atomikos.com/Main/WhichLicenseApplies for details.
 */

package com.atomikos.finitestates;

import java.util.EventObject;

import com.atomikos.recovery.TxState;

public class FSMEnterEvent extends EventObject{

	private static final long serialVersionUID = -7910459829127232977L;
	
	protected final TxState newState;

	public FSMEnterEvent(Object source, TxState state){
		super(source);
		newState=state;
	}
	
	public TxState getState(){
		return newState;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy