This commit is contained in:
crusader 2018-05-04 14:18:58 +09:00
parent bd3e1676ed
commit cbfcd3f6db
2 changed files with 7 additions and 2 deletions

View File

@ -0,0 +1,7 @@
package com.loafle.overflow.service.container;
/**
* CollectorService
*/
public interface CollectorService {
}

View File

@ -12,6 +12,4 @@ import com.loafle.overflow.core.interfaces.Service;
public interface CrawlerService extends Service { public interface CrawlerService extends Service {
@ProbeAPI @ProbeAPI
void Auth(String crawlerName, Map<String, Object> authInfoMap) throws OverflowException; void Auth(String crawlerName, Map<String, Object> authInfoMap) throws OverflowException;
@ProbeAPI
Map<String, String> Get(String sensorConfigID) throws OverflowException;
} }