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

es.codeurjc.squirrel.drey.AlgorithmEvent Maven / Gradle / Ivy

Go to download

Java framework aimed to support distributed execution of algorithms thanks to Hazelcast technology

There is a newer version: 2.0.0
Show newest version
package es.codeurjc.squirrel.drey;

import java.io.Serializable;

public class AlgorithmEvent implements Serializable {

	private static final long serialVersionUID = 1L;

	String algorithmId;
	String name;
	Object content;

	public AlgorithmEvent(String algorithmId, String name, Object content) {
		this.algorithmId = algorithmId;
		this.name = name;
		this.content = content;
	}

	public String getAlgorithmId() {
		return algorithmId;
	}

	public void setAlgorithmId(String algorithmId) {
		this.algorithmId = algorithmId;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Object getContent() {
		return content;
	}

	public void setContent(Object content) {
		this.content = content;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy