1 23 24 package com.sun.enterprise.appclient.jws; 25 26 import java.io.File ; 27 import java.net.URI ; 28 29 34 35 public class AppserverStaticContent extends StaticContent { 36 37 38 private boolean isSigned = false; 39 40 50 public AppserverStaticContent(ContentOrigin origin, String contentKey, String path, File file, URI installRootURI, boolean isMainJarFile) { 51 super(origin, contentKey, path, file, installRootURI, isMainJarFile); 52 } 53 54 63 public AppserverStaticContent(ContentOrigin origin, String contentKey, String path, File file, URI installRootURI) { 64 this(origin, contentKey, path, file, installRootURI, false); 65 } 66 67 78 public AppserverStaticContent(ContentOrigin origin, String contentKey, String path, File file, URI installRootURI, boolean isMainJarFile, boolean isSigned) { 79 this(origin, contentKey, path, file, installRootURI, isMainJarFile); 80 this.isSigned = isSigned; 81 } 82 83 88 public String getPath() { 89 return getContentKey(); 90 } 91 } 92 | Popular Tags |