Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8315601

Add java.vendor.url.bug to list of recognized standard system properties

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • core-libs
    • None
    • behavioral
    • minimal
    • The java.vendor.url.bug system property has always been set since the past several releases. Chances of this not be set are very minimal.
    • System or security property
    • SE

      Summary

      The java.vendor.url.bug system property will be listed as one of the standard system properties in the documentation of java.lang.System.getProperties() method.

      Problem

      As noted in https://bugs.openjdk.org/browse/JDK-8232753, the java.vendor.url.bug system property has been defined in every JDK release for a long time now. However, it has never been specified.

      Solution

      The java.vendor.url.bug will be specified in the documentation of java.lang.System.getProperties() method to return the URL to the Java vendor's bug tracker. This will be a non-optional property, meaning, the value of this system property is expected to be set. There won't be any restrictions on the value of this system property to be a parseable URL.

      Specification

      diff --git a/src/java.base/share/classes/java/lang/System.java b/src/java.base/share/classes/java/lang/System.java
      index e50858b26f1..0dc40733351 100644
      --- a/src/java.base/share/classes/java/lang/System.java
      +++ b/src/java.base/share/classes/java/lang/System.java
      @@ -723,6 +723,8 @@ public static native void arraycopy(Object src,  int  srcPos,
            *     <td>Java Runtime Environment vendor</td></tr>
            * <tr><th scope="row">{@systemProperty java.vendor.url}</th>
            *     <td>Java vendor URL</td></tr>
      +     * <tr><th scope="row">{@systemProperty java.vendor.url.bug}</th>
      +     *     <td>Java vendor's bug tracker URL</td></tr>
            * <tr><th scope="row">{@systemProperty java.vendor.version}</th>
            *     <td>Java vendor version <em>(optional)</em> </td></tr>
            * <tr><th scope="row">{@systemProperty java.home}</th>

            jpai Jaikiran Pai
            darcy Joe Darcy
            Roger Riggs, Sundararajan Athijegannathan
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: