View Javadoc
1   package com.atlassian.plugin.classloader.url;
2   
3   import java.net.URL;
4   import java.net.URLConnection;
5   import java.net.URLStreamHandler;
6   
7   /**
8    * URL stream handler of a byte array
9    */
10  public class BytesUrlStreamHandler extends URLStreamHandler {
11      private final byte[] content;
12  
13      public BytesUrlStreamHandler(byte[] content) {
14          this.content = content;
15      }
16  
17      public URLConnection openConnection(URL url) {
18          return new BytesUrlConnection(url, content);
19      }
20  }