This commit is contained in:
geek 2018-04-23 19:19:06 +09:00
parent 0e23756196
commit 7d7bea010e

View File

@ -1,7 +1,19 @@
package com.loafle.overflow.module.auth.service; 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. * Created by geek on 17. 11. 7.
*/ */
public interface AuthCrawlerService { 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;
} }