删除标注为过时的方法

This commit is contained in:
wangxin
2018-06-07 13:27:57 +08:00
parent 4158b86ec7
commit 51962c9f11
5 changed files with 5 additions and 153 deletions

View File

@@ -295,38 +295,4 @@ public abstract class CrudService<D extends CrudDao<T>, T extends BaseEntity<T>>
}
}
}
/**
*
* sendToMaatConvertorBatch(单域配置下发maat)
* (cfgs里每条为一条配置每条配置可能包含区域IP)
* @param operation
* @param cfgs
* @return
* @throws Exception
*boolean
* @exception
* @since 1.0.0
*/
@Deprecated
public boolean sendToMaatConvertorBatch(int operation,List<? extends BaseCfg> cfgs) throws Exception{
//发送至maat,待完成
return false;
}
/**
*
* sendToMaatConvertor(转换配置为Maat格式)
* (所有的配置需拥有一样的编译IDaction,serviceId,等属性)
* @param cfg
* @return
*boolean
* @throws Exception
* @exception
* @since 1.0.0
*/
@SuppressWarnings("rawtypes")
@Deprecated
public boolean sendToMaatConvertor(int operation,List<AreaIpCfg> areaCfg,BaseCfg ... cfg) throws Exception{
return false;
}
}