symphonyoss / symphony-java-client

Java client library for Symphony

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Additional ctor for SymphonyClientConfig

dferguson992 opened this issue · comments

commented

Inspired by #91

What about a constructor for the SymphonyClientConfig object that takes a string location for the properties file and calls the load method with that file location in mind.

public SymphonyClientConfig(String configFile) { this.set(SymphonyClientConfigID.SYMPHONY_CONFIG_FILE, configFile); load(); }

commit 6779a9e

Done