AppserverStaticContentpublic class AppserverStaticContent extends StaticContent Represents content to be served back to Java Web Start on users' systems. |
Fields Summary |
---|
private boolean | isSignedrecords whether this particular static content instance represents a signed jar or not |
Constructors Summary |
---|
public AppserverStaticContent(ContentOrigin origin, String contentKey, String path, File file, URI installRootURI, boolean isMainJarFile)Returns a new instance of the AppserverStaticContent class.
super(origin, contentKey, path, file, installRootURI, isMainJarFile);
| public AppserverStaticContent(ContentOrigin origin, String contentKey, String path, File file, URI installRootURI)Returns a new instance of the AppserverStaticContent class that is not a main jar.
this(origin, contentKey, path, file, installRootURI, false);
| public AppserverStaticContent(ContentOrigin origin, String contentKey, String path, File file, URI installRootURI, boolean isMainJarFile, boolean isSigned)Returns a new instance of the AppserverStaticContent class that is not a main jar.
this(origin, contentKey, path, file, installRootURI, isMainJarFile);
this.isSigned = isSigned;
|
Methods Summary |
---|
public java.lang.String | getPath()Returns the path for this content.
For appserver static content, the content key and the path are the same.
return getContentKey();
|
|