Skip to content

Instantly share code, notes, and snippets.

@eliasnogueira
Created December 20, 2020 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliasnogueira/297f28903b66fd32cd5e57d03a51a688 to your computer and use it in GitHub Desktop.
Save eliasnogueira/297f28903b66fd32cd5e57d03a51a688 to your computer and use it in GitHub Desktop.
Using Owner to read the properties
public class OwnerUsageExample {
public void example() {
GeneralConfig generalConfig = ConfigFactory.create(GeneralConfig.class);
String target = generalConfig.target();
String url = generalConfig.url();
int timeout = generalConfig.timeout();
Boolean headlessMode = generalConfig.headless();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment