Merge remote-tracking branch 'origin/master'

This commit is contained in:
snoop 2018-04-23 19:59:47 +09:00
commit a42f95ee43

View File

@ -1,7 +1,19 @@
package com.loafle.overflow.module.auth.service;
import com.loafle.overflow.module.auth.model.AuthCrawler;
import com.loafle.overflow.module.core.annotation.WebappAPI;
import com.loafle.overflow.module.core.exception.OverflowException;
import com.loafle.overflow.module.meta.model.MetaCrawler;
import com.loafle.overflow.module.target.model.Target;
/**
* Created by geek on 17. 11. 7.
*/
public interface AuthCrawlerService {
@WebappAPI
AuthCrawler regist(AuthCrawler authCrawler) throws OverflowException;
@WebappAPI
boolean checkAuthCrawler(long infraId, MetaCrawler crawler, String authJson) throws OverflowException;
@WebappAPI
AuthCrawler readAuth(MetaCrawler metaCrawler, Target target) throws OverflowException;
}