-
Notifications
You must be signed in to change notification settings - Fork 74
编码建议之常量
quhongwei edited this page Mar 28, 2018
·
1 revision
由于组件设计采用微内核+插件扩展机制, 组件定义的枚举或者常量无法包括插件中的, 所以组件内核和各个插件都定义常量,但是感觉又比较分散
用户可以在接入组件的时候定义一个常量类来继承这些
/**
* 组件统一常量
*
* @author hongwei.quhw
* @version $Id: RdfFileConstants.java, v 0.1 2018年3月6日 下午3:06:41 hongwei.quhw Exp $
*/
public interface RdfFileConstants extends FileCoreManualProcessorConstants,
FileCoreResourcesConstants, FileCoreStorageContants,
FileCoreToolContants, FileOssManualProcessorConstants,
FileOssResourcesConstants, FileOssStorageContants {
}