public Set<String> getTagsForJob(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_EXECUTION_REST_URL, id, "tags"},
SLASH),
null,