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

com.checkmarx.configprovider.resource.Parser Maven / Gradle / Ivy

package com.checkmarx.configprovider.resource;

import com.checkmarx.configprovider.dto.interfaces.ConfigResource;
import com.typesafe.config.Config;

import javax.naming.ConfigurationException;

public class Parser {
    private Parser() {}

    public static Config parse(ConfigResource resource) throws ConfigurationException {
        return ((ParsableResource)resource).loadConfig();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy