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.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
|
||||
|
|
|
@ -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 {
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user