package org.infosec.ismp.poller.pollable;
import java.util.Collection;
/**
* 服务
* @author <a href="mailto:lianglin1979@sjtu.edu.cn">lianglin</a>
*
*/
public class Service {
public String getName() {
// TODO Auto-generated method stub
return null;
}
public Collection<Parameter> getParameterCollection() {
// TODO Auto-generated method stub
return null;
}
public long getInterval() {
// TODO Auto-generated method stub
return 0;
}
}