32
32
* Read-only access to System property values initialized during Phase 1
33
33
* are cached. Setting, clearing, or modifying the value using
34
34
* {@link System#setProperty} or {@link System#getProperties()} is ignored.
35
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
36
- * in these access methods. The caller of these methods should take care to ensure
37
- * that the returned property is not made accessible to untrusted code.</strong>
38
35
*/
39
36
public final class StaticProperty {
40
37
41
38
// The class static initialization is triggered to initialize these final
42
- // fields during init Phase 1 and before a security manager is set .
39
+ // fields during init Phase 1.
43
40
private static final String JAVA_HOME ;
44
41
private static final String USER_HOME ;
45
42
private static final String USER_DIR ;
@@ -143,76 +140,48 @@ private static String getProperty(Properties props, String key,
143
140
144
141
/**
145
142
* {@return the {@code java.home} system property}
146
- *
147
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
148
- * in this method. The caller of this method should take care to ensure
149
- * that the returned property is not made accessible to untrusted code.</strong>
150
143
*/
151
144
public static String javaHome () {
152
145
return JAVA_HOME ;
153
146
}
154
147
155
148
/**
156
149
* {@return the {@code user.home} system property}
157
- *
158
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
159
- * in this method. The caller of this method should take care to ensure
160
- * that the returned property is not made accessible to untrusted code.</strong>
161
150
*/
162
151
public static String userHome () {
163
152
return USER_HOME ;
164
153
}
165
154
166
155
/**
167
156
* {@return the {@code user.dir} system property}
168
- *
169
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
170
- * in this method. The caller of this method should take care to ensure
171
- * that the returned property is not made accessible to untrusted code.</strong>
172
157
*/
173
158
public static String userDir () {
174
159
return USER_DIR ;
175
160
}
176
161
177
162
/**
178
163
* {@return the {@code user.name} system property}
179
- *
180
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
181
- * in this method. The caller of this method should take care to ensure
182
- * that the returned property is not made accessible to untrusted code.</strong>
183
164
*/
184
165
public static String userName () {
185
166
return USER_NAME ;
186
167
}
187
168
188
169
/**
189
170
* {@return the {@code java.library.path} system property}
190
- *
191
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
192
- * in this method. The caller of this method should take care to ensure
193
- * that the returned property is not made accessible to untrusted code.</strong>
194
171
*/
195
172
public static String javaLibraryPath () {
196
173
return JAVA_LIBRARY_PATH ;
197
174
}
198
175
199
176
/**
200
177
* {@return the {@code java.io.tmpdir} system property}
201
- *
202
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
203
- * in this method. The caller of this method should take care to ensure
204
- * that the returned property is not made accessible to untrusted code.</strong>
205
178
*/
206
179
public static String javaIoTmpDir () {
207
180
return JAVA_IO_TMPDIR ;
208
181
}
209
182
210
183
/**
211
184
* {@return the {@code sun.boot.library.path} system property}
212
- *
213
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
214
- * in this method. The caller of this method should take care to ensure
215
- * that the returned property is not made accessible to untrusted code.</strong>
216
185
*/
217
186
public static String sunBootLibraryPath () {
218
187
return SUN_BOOT_LIBRARY_PATH ;
@@ -221,10 +190,6 @@ public static String sunBootLibraryPath() {
221
190
222
191
/**
223
192
* {@return the {@code jdk.serialFilter} system property}
224
- *
225
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
226
- * in this method. The caller of this method should take care to ensure
227
- * that the returned property is not made accessible to untrusted code.</strong>
228
193
*/
229
194
public static String jdkSerialFilter () {
230
195
return JDK_SERIAL_FILTER ;
@@ -233,91 +198,62 @@ public static String jdkSerialFilter() {
233
198
234
199
/**
235
200
* {@return the {@code jdk.serialFilterFactory} system property}
236
- *
237
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
238
- * in this method. The caller of this method should take care to ensure
239
- * that the returned property is not made accessible to untrusted code.</strong>
240
201
*/
241
202
public static String jdkSerialFilterFactory () {
242
203
return JDK_SERIAL_FILTER_FACTORY ;
243
204
}
244
205
245
206
/**
246
207
* {@return the {@code native.encoding} system property}
247
- *
248
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
249
- * in this method. The caller of this method should take care to ensure
250
- * that the returned property is not made accessible to untrusted code.</strong>
251
208
*/
252
209
public static String nativeEncoding () {
253
210
return NATIVE_ENCODING ;
254
211
}
255
212
256
213
/**
257
214
* {@return the {@code file.encoding} system property}
258
- *
259
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
260
- * in this method. The caller of this method should take care to ensure
261
- * that the returned property is not made accessible to untrusted code.</strong>
262
215
*/
263
216
public static String fileEncoding () {
264
217
return FILE_ENCODING ;
265
218
}
266
219
267
220
/**
268
221
* {@return the {@code java.properties.date} system property}
269
- *
270
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
271
- * in this method.</strong>
272
222
*/
273
223
public static String javaPropertiesDate () {
274
224
return JAVA_PROPERTIES_DATE ;
275
225
}
276
226
277
227
/**
278
228
* {@return the {@code sun.jnu.encoding} system property}
279
- *
280
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
281
- * in this method. The caller of this method should take care to ensure
282
- * that the returned property is not made accessible to untrusted code.</strong>
283
229
*/
284
230
public static String jnuEncoding () {
285
231
return SUN_JNU_ENCODING ;
286
232
}
287
233
288
234
/**
289
235
* {@return the {@code java.locale.useOldISOCodes} system property}
290
- *
291
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
292
- * in this method. The caller of this method should take care to ensure
293
- * that the returned property is not made accessible to untrusted code.</strong>
294
236
*/
295
237
public static String javaLocaleUseOldISOCodes () {
296
238
return JAVA_LOCALE_USE_OLD_ISO_CODES ;
297
239
}
298
240
299
241
/**
300
242
* {@return the {@code os.name} system property}
301
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
302
- * in this method. This property is not considered security sensitive.</strong>
303
243
*/
304
244
public static String osName () {
305
245
return OS_NAME ;
306
246
}
307
247
308
248
/**
309
249
* {@return the {@code os.arch} system property}
310
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
311
- * in this method. This property is not considered security sensitive.</strong>
312
250
*/
313
251
public static String osArch () {
314
252
return OS_ARCH ;
315
253
}
316
254
317
255
/**
318
256
* {@return the {@code os.version} system property}
319
- * <strong>{@link SecurityManager#checkPropertyAccess} is NOT checked
320
- * in this method. This property is not considered security sensitive.</strong>
321
257
*/
322
258
public static String osVersion () {
323
259
return OS_VERSION ;
1 commit comments
openjdk-notifier[bot] commentedon Nov 16, 2024
Review
Issues