Skip to content

Commit 59ef76a

Browse files
committedMay 5, 2022
8285497: Add system property for Java SE specification maintenance version
Reviewed-by: mullan, jpai, iris
1 parent 6d7e446 commit 59ef76a

File tree

4 files changed

+23
-1
lines changed

4 files changed

+23
-1
lines changed
 

‎src/java.base/share/classes/java/lang/System.java

+13
Original file line numberDiff line numberDiff line change
@@ -732,6 +732,9 @@ public static native void arraycopy(Object src, int srcPos,
732732
* <td>Java Runtime Environment specification version, whose value is
733733
* the {@linkplain Runtime.Version#feature feature} element of the
734734
* {@linkplain Runtime#version() runtime version}</td></tr>
735+
* <tr><th scope="row">{@systemProperty java.specification.maintenance.version}</th>
736+
* <td>Java Runtime Environment specification maintenance version,
737+
* may be interpreted as a positive integer <em>(optional, see below)</em></td></tr>
735738
* <tr><th scope="row">{@systemProperty java.specification.vendor}</th>
736739
* <td>Java Runtime Environment specification vendor</td></tr>
737740
* <tr><th scope="row">{@systemProperty java.specification.name}</th>
@@ -779,6 +782,16 @@ public static native void arraycopy(Object src, int srcPos,
779782
* </tbody>
780783
* </table>
781784
* <p>
785+
* The {@code java.specification.maintenance.version} property is
786+
* defined if the specification implemented by this runtime at the
787+
* time of its construction had undergone a <a
788+
* href="https://jcp.org/en/procedures/jcp2#3.6.4">maintenance
789+
* release</a>. When defined, its value identifies that
790+
* maintenance release. To indicate the first maintenance release
791+
* this property will have the value {@code "1"}, to indicate the
792+
* second maintenance release this property will have the value
793+
* {@code "2"}, and so on.
794+
* <p>
782795
* Multiple paths in a system property value are separated by the path
783796
* separator character of the platform.
784797
* <p>

‎src/java.base/share/classes/java/lang/VersionProps.java.template

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -109,6 +109,10 @@ class VersionProps {
109109
props.put("java.class.version", CLASSFILE_MAJOR_MINOR);
110110

111111
props.put("java.specification.version", VERSION_SPECIFICATION);
112+
113+
// Uncomment next props.put call after the first maintenance release for a
114+
// platform specification is done and set the MR number, starting at "1".
115+
// props.put("java.specification.maintenance.version", "1");
112116
props.put("java.specification.name", "Java Platform API Specification");
113117
props.put("java.specification.vendor", "Oracle Corporation");
114118

‎src/java.base/share/classes/sun/security/provider/PolicyFile.java

+3
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,9 @@ public Void run() {
614614
pe.add(new PropertyPermission
615615
("java.specification.version",
616616
SecurityConstants.PROPERTY_READ_ACTION));
617+
pe.add(new PropertyPermission
618+
("java.specification.maintenance.version",
619+
SecurityConstants.PROPERTY_READ_ACTION));
617620
pe.add(new PropertyPermission
618621
("java.specification.vendor",
619622
SecurityConstants.PROPERTY_READ_ACTION));

‎src/java.base/share/conf/security/java.policy

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ grant {
3030
permission java.util.PropertyPermission "line.separator", "read";
3131
permission java.util.PropertyPermission
3232
"java.specification.version", "read";
33+
permission java.util.PropertyPermission
34+
"java.specification.maintenance.version", "read";
3335
permission java.util.PropertyPermission "java.specification.vendor", "read";
3436
permission java.util.PropertyPermission "java.specification.name", "read";
3537
permission java.util.PropertyPermission

0 commit comments

Comments
 (0)
Please sign in to comment.