All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.elide.modelconfig.DBPasswordExtractor Maven / Gradle / Ivy

There is a newer version: 7.1.2
Show newest version
/*
 * Copyright 2020, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.modelconfig;

import com.yahoo.elide.modelconfig.model.DBConfig;

/**
 * Interface for providing password extractor implementation.
 */
public interface DBPasswordExtractor {
    /**
     * Extract password for connecting to DB.
     * @param config DB Config POJO.
     * @return String DB Connection Password.
     */
    String getDBPassword(DBConfig config);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy