/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.appspot.trafficando.domain;
import java.util.List;
import org.apache.abdera.model.Entry;
/**
*
* @author Domenico Maria Giffone
*/
public interface EventProvider {
public String getName();
public String getContributor();
public String getRemoteAddress();
public List<String> getSupportedCountries();
public EventType getEventType();
public List<Entry> getEntries();
}
|