es.codeurjc.squirrel.drey.AlgorithmEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of squirrel-drey Show documentation
Show all versions of squirrel-drey Show documentation
Java framework aimed to support distributed execution of algorithms thanks to Hazelcast technology
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;
}
}