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

com.automationrockstars.gunter.events.Event Maven / Gradle / Ivy

The newest version!
/*
 * 
 */
package com.automationrockstars.gunter.events;

import com.automationrockstars.gunter.EventType;

import java.util.Date;
import java.util.Map;

public interface Event {

    EventType getType();

    String getId();

    String getParentId();

    Date getTimeStamp();

    Map getAttributes();

    void setAttributes(Map attributes);

     T getAttribute(String attribute);

    void setAttribute(String attribute, Object value);

     T as(Class clazz);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy