//There cannot be any colons in this id or else they end up in the security token
//The security token uses colons for separators of different parts so remove all
//the colons. In this case since it is a URL there should only be 1
return URLEncoder.encode(StringUtils.defaultString(this.notesUrl).replaceAll(":", ""), "UTF-8");
} catch (UnsupportedEncodingException e) {
throw new ContainerExtPointException(e);
}
}