[icedtea-web] RFC: add DownloadService2 and IntegrationService
Deepak Bhole
dbhole at redhat.com
Wed Nov 17 13:25:29 PST 2010
* Omair Majid <omajid at redhat.com> [2010-11-15 12:57]:
> Hi,
>
> The attached patch adds the interfaces javax.jnlp.DownloadService2
> and javax.jnlp.IntegrationService to icedtea-web. The patch does not
> implement anything yet. These 2 interfaces have been part of the
> JNLP API since JDK update 18 (according to the javadocs).
>
> Without this patch, applications that import one of these two
> interfaces will throw a ClassNotFoundException.
>
> With this patch applied applications will be able to import the
> interfaces. JNLP applications still wont be able to use the API
> provided by these two services as the ServiceManager will not return
> services of this type. However, it will allow the applications to
> continue running.
>
Looks good. OK for head.
Deepak
> ChangeLog:
> 2010-11-12 Omair Majid <omajid at redhat.com>
>
> * netx/javax/jnlp/DownloadService2.java: New interface.
> (ResourceSpec): New class.
> (ResourceSpec.ResourceSpec): New method.
> (ResourceSpec.getExpirationDate): New method.
> (ResourceSpec.getLastModified): New method.
> (ResourceSpec.getSize): New method.
> (ResourceSpec.getType): New method.
> (ResourceSpec.getUrl): New method.
> (ResourceSpec.getVersion): New method.
> (getCachedResources): New method.
> (getUpdateAvaiableReosurces): New method.
> * netx/javax/jnlp/IntegrationService.java: New interface.
> (hasAssociation): New method.
> (hasDesktopShortcut): New method.
> (hasMenuShortcut): New method.
> (removeAssociation): New method.
> (removeShortcuts): New method.
> (requestAssociation): New method.
> (requestShortcut): New method.
>
> Any thoughts or comments?
>
> Cheers,
> Omair
> diff -r 44d47c366e5f netx/javax/jnlp/DownloadService2.java
> --- /dev/null Thu Jan 01 00:00:00 1970 +0000
> +++ b/netx/javax/jnlp/DownloadService2.java Thu Nov 11 09:24:09 2010 -0500
> @@ -0,0 +1,57 @@
> +package javax.jnlp;
> +
> +public interface DownloadService2 {
> +
> + public static class ResourceSpec {
> +
> + public static final long UNKNOWN = Long.MIN_VALUE;
> +
> + protected String url;
> + protected String version;
> + protected int type;
> +
> + public ResourceSpec(java.lang.String url, java.lang.String version, int type) {
> + this.url = url;
> + this.version = version;
> + this.type = type;
> + }
> +
> + public long getExpirationDate() {
> + return UNKNOWN;
> + }
> +
> + public long getLastModified() {
> + return UNKNOWN;
> + }
> +
> + public long getSize() {
> + return UNKNOWN;
> + }
> +
> + public int getType() {
> + return type;
> + }
> +
> + public java.lang.String getUrl() {
> + return url;
> + }
> +
> + public java.lang.String getVersion() {
> + return version;
> + }
> + }
> +
> + public static final int ALL = 0;
> + public static final int APPLET = 2;
> + public static final int APPLICATION = 1;
> + public static final int CLASS = 6;
> + public static final int EXTENSION = 3;
> + public static final int IMAGE = 5;
> + public static final int JAR = 4;
> +
> + public DownloadService2.ResourceSpec[] getCachedResources(
> + javax.jnlp.DownloadService2.ResourceSpec resourceSpec);
> +
> + public DownloadService2.ResourceSpec[] getUpdateAvaiableReosurces(
> + javax.jnlp.DownloadService2.ResourceSpec resourceSpec);
> +}
> diff -r 44d47c366e5f netx/javax/jnlp/IntegrationService.java
> --- /dev/null Thu Jan 01 00:00:00 1970 +0000
> +++ b/netx/javax/jnlp/IntegrationService.java Thu Nov 11 09:24:09 2010 -0500
> @@ -0,0 +1,19 @@
> +package javax.jnlp;
> +
> +public interface IntegrationService {
> +
> + public boolean hasAssociation(java.lang.String mimeType, java.lang.String[] extensions);
> +
> + public boolean hasDesktopShortcut();
> +
> + public boolean hasMenuShortcut();
> +
> + public boolean removeAssociation(java.lang.String mimeType, java.lang.String[] extensions);
> +
> + public boolean removeShortcuts();
> +
> + public boolean requestAssociation(java.lang.String mimeType, java.lang.String[] extensions);
> +
> + public boolean requestShortcut(boolean onDesktop, boolean inMenu, java.lang.String subMenu);
> +
> +}
More information about the distro-pkg-dev
mailing list