This commit is contained in:
crusader 2018-04-26 19:54:06 +09:00
parent e8ddd71a0a
commit 07adce4953
3 changed files with 7 additions and 3 deletions

View File

@ -4,11 +4,12 @@ import java.util.Map;
import com.loafle.overflow.core.annotation.ProbeAPI;
import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.core.interfaces.Service;
/**
* CrawlerService
*/
public interface CrawlerService {
public interface CrawlerService extends Service {
@ProbeAPI
void Auth(String crawlerName, Map<String, Object> authInfoMap) throws OverflowException;
@ProbeAPI

View File

@ -1,7 +1,9 @@
package com.loafle.overflow.service.container;
import com.loafle.overflow.core.interfaces.Service;
/**
* ProbeService
*/
public interface ProbeService {
public interface ProbeService extends Service {
}

View File

@ -4,12 +4,13 @@ import java.util.List;
import com.loafle.overflow.core.annotation.ProbeAPI;
import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.core.interfaces.Service;
import com.loafle.overflow.model.sensorconfig.SensorConfig;
/**
* SensorConfigService
*/
public interface SensorConfigService {
public interface SensorConfigService extends Service {
@ProbeAPI
void InitConfig(List<SensorConfig> sensorConfigs) throws OverflowException;
@ProbeAPI