com.aspire.nm.component.common.mobile.Strategy.LoadStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonUtil Show documentation
Show all versions of commonUtil Show documentation
commonUtil is a dajiangnan's java utils
package com.aspire.nm.component.common.mobile.Strategy;
import java.util.List;
import com.aspire.nm.component.common.mobile.Strategy.Impl.db.black.Black;
import com.aspire.nm.component.common.mobile.Strategy.Impl.db.legalPerfix.LegalPerfix;
import com.aspire.nm.component.common.mobile.Strategy.Impl.db.segment.SegMent;
import com.aspire.nm.component.common.mobile.Strategy.Impl.db.switchs.Swithchs;
import com.aspire.nm.component.common.mobile.Strategy.Impl.db.update.UpdateTimes;
public interface LoadStrategy {
/**
* 获取更新时间
* @return
*/
public UpdateTimes getUpdateTimes();
/**
* 获取合法手机号前缀
* @return
*/
public LegalPerfix loadLegalPerfix();
/**
* 获取号段信息
*/
public List loadSegMents();
/**
* 获取黑名单信息
*/
public List loadBlacks();
/**
* 获取携号转网信息
* @return
*/
public List loadSwithchs();
}