package test.rewolucja.task; import test.rewolucja.GSSIMJobInterface; public class TaskEvent { protected GSSIMJobInterface task; protected String resourceName; public TaskEvent(GSSIMJobInterface task, String resourceName) { super(); this.task = task; this.resourceName = resourceName; } public GSSIMJobInterface getTask() { return task; } public String getResourceName() { return resourceName; } }