ing
This commit is contained in:
parent
e8ddd71a0a
commit
07adce4953
@ -4,11 +4,12 @@ import java.util.Map;
|
|||||||
|
|
||||||
import com.loafle.overflow.core.annotation.ProbeAPI;
|
import com.loafle.overflow.core.annotation.ProbeAPI;
|
||||||
import com.loafle.overflow.core.exception.OverflowException;
|
import com.loafle.overflow.core.exception.OverflowException;
|
||||||
|
import com.loafle.overflow.core.interfaces.Service;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CrawlerService
|
* CrawlerService
|
||||||
*/
|
*/
|
||||||
public interface CrawlerService {
|
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
|
@ProbeAPI
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
package com.loafle.overflow.service.container;
|
package com.loafle.overflow.service.container;
|
||||||
|
|
||||||
|
import com.loafle.overflow.core.interfaces.Service;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ProbeService
|
* ProbeService
|
||||||
*/
|
*/
|
||||||
public interface ProbeService {
|
public interface ProbeService extends Service {
|
||||||
}
|
}
|
@ -4,12 +4,13 @@ import java.util.List;
|
|||||||
|
|
||||||
import com.loafle.overflow.core.annotation.ProbeAPI;
|
import com.loafle.overflow.core.annotation.ProbeAPI;
|
||||||
import com.loafle.overflow.core.exception.OverflowException;
|
import com.loafle.overflow.core.exception.OverflowException;
|
||||||
|
import com.loafle.overflow.core.interfaces.Service;
|
||||||
import com.loafle.overflow.model.sensorconfig.SensorConfig;
|
import com.loafle.overflow.model.sensorconfig.SensorConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SensorConfigService
|
* SensorConfigService
|
||||||
*/
|
*/
|
||||||
public interface SensorConfigService {
|
public interface SensorConfigService extends Service {
|
||||||
@ProbeAPI
|
@ProbeAPI
|
||||||
void InitConfig(List<SensorConfig> sensorConfigs) throws OverflowException;
|
void InitConfig(List<SensorConfig> sensorConfigs) throws OverflowException;
|
||||||
@ProbeAPI
|
@ProbeAPI
|
||||||
|
Loading…
x
Reference in New Issue
Block a user