protected URL createURL()
{
// Return an URL that refers to the repository and returns an input stream to the byte array if requested
try
{
ByteArrayURLStreamHandler handler = new ByteArrayURLStreamHandler(content);
URL url = new URL(repositoryUrl.getProtocol(), repositoryUrl.getHost(), repositoryUrl.getPort(), repositoryUrl.getFile(), handler);
return url;
}
catch (MalformedURLException e)
{