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

com.terapico.caf.baseelement.Event Maven / Gradle / Ivy

package com.terapico.caf.baseelement;

import java.util.Date;

public class Event {
	private Location location;
	private String source;
	private String target;
	private Object message;
	private Date time;
	public String getSource() {
		return source;
	}
	public void setSource(String source) {
		this.source = source;
	}
	public String getTarget() {
		return target;
	}
	public void setTarget(String target) {
		this.target = target;
	}
	public Object getMessage() {
		return message;
	}
	public void setMessage(Object message) {
		this.message = message;
	}
	public Date getTime() {
		return time;
	}
	public void setTime(Date time) {
		this.time = time;
	}
	public Location getLocation() {
		return location;
	}
	public void setLocation(Location location) {
		this.location = location;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy