
com.baidu.disconf.client.scan.ScanFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconf-client Show documentation
Show all versions of disconf-client Show documentation
https://github.com/knightliao/disconf/tree/master/disconf-client
The newest version!
package com.baidu.disconf.client.scan;
import com.baidu.disconf.client.scan.impl.ScanMgrImpl;
import com.baidu.disconf.client.support.registry.Registry;
/**
* 扫描器工厂
*
* @author liaoqiqi
* @version 2014-7-29
*/
public class ScanFactory {
/**
* @throws Exception
*/
public static ScanMgr getScanMgr(Registry registry) throws Exception {
ScanMgr scanMgr = new ScanMgrImpl(registry);
return scanMgr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy