In the core module, rather than hard code things which might change, or are env specific, we want to pull them in.E.g rather than final private String rootUrl = "https://somesite.com/api" In the classes,We want to use something like.String rootURL = getEnv("rootURL");In a typical java app, getEnv wo...