public Set<String> getConfigsForApplication(final String id) throws GenieException {
if (StringUtils.isBlank(id)) {
throw new GeniePreconditionException("Missing required parameter: id");
}
final HttpRequest request = BaseGenieClient.buildRequest(
Verb.GET,
StringUtils.join(
new String[]{BASE_CONFIG_APPLICATION_REST_URL, id, "configs"},
SLASH),
null,