Java Code Examples for com.baidu.disconf.client.common.annotations.DisconfFile#filename()

The following examples show how to use com.baidu.disconf.client.common.annotations.DisconfFile#filename() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ScanVerify.java    From disconf with Apache License 2.0 3 votes vote down vote up
/**
 * 判断配置文件的类型是否正确
 */
public static boolean isDisconfFileTypeRight(DisconfFile disconfFile) {

    String fileName = disconfFile.filename();

    SupportFileTypeEnum supportFileTypeEnum = SupportFileTypeEnum.getByFileName(fileName);

    if (supportFileTypeEnum == null) {

        LOGGER.error("now we only support this type of conf: " + disconfFile.toString());
        return false;
    }

    return true;
}
 
Example 2
Source File: ScanVerify.java    From disconf with Apache License 2.0 3 votes vote down vote up
/**
 * 判断配置文件的类型是否正确
 */
public static boolean isDisconfFileTypeRight(DisconfFile disconfFile) {

    String fileName = disconfFile.filename();

    SupportFileTypeEnum supportFileTypeEnum = SupportFileTypeEnum.getByFileName(fileName);

    if (supportFileTypeEnum == null) {

        LOGGER.error("now we only support this type of conf: " + disconfFile.toString());
        return false;
    }

    return true;
}