aboutsummaryrefslogtreecommitdiffstats
path: root/utils/provider/src/main/java/org/onap/ccsdk/sli/core/utils/dblib/DblibEnvVarFileResolver.java
blob: 959271cb7ff2125d6d8107814f1c6d83e26a64fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.onap.ccsdk.sli.core.utils.dblib;

import org.onap.ccsdk.sli.core.utils.EnvVarFileResolver;

/**
 * Resolve properties file location based on the default directory name.
 *
 * @deprecated
 *    This class has been replaced by generic version of this class
 *    {@link #SdncConfigEnvVarFileResolver} in common package.
 */
@Deprecated
public class DblibEnvVarFileResolver extends EnvVarFileResolver {

    /**
     * Key for environment variable representing the configuration directory
     */
    private static final String SDNC_CONFIG_DIR_PROP_KEY = "SDNC_CONFIG_DIR";

    public DblibEnvVarFileResolver(final String successMessage) {
        super(successMessage, SDNC_CONFIG_DIR_PROP_KEY);
    }
}