Added JAVA_ENDORSED_DIRS.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137687 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d776d26889
commit
451ae3e4e7
|
@ -69,7 +69,7 @@ package org.apache.commons.lang;
|
|||
* @author Tetsuya Kaneuchi
|
||||
* @author Rafal Krupinski
|
||||
* @since 1.0
|
||||
* @version $Id: SystemUtils.java,v 1.24 2003/10/07 20:59:46 scolebourne Exp $
|
||||
* @version $Id: SystemUtils.java,v 1.25 2003/10/23 03:55:34 ggregory Exp $
|
||||
*/
|
||||
public class SystemUtils {
|
||||
|
||||
|
@ -132,6 +132,17 @@ public class SystemUtils {
|
|||
*/
|
||||
public static final String JAVA_COMPILER = getSystemProperty("java.compiler");
|
||||
|
||||
/**
|
||||
* <p>The <code>java.endorsed.dirs</code> System Property. Path of endorsed directory
|
||||
* or directories.</p>
|
||||
*
|
||||
* <p>Defaults to <code>null</code> if the runtime does not have
|
||||
* security access to read this property or the property does not exist.</p>
|
||||
*
|
||||
* @since Java 1.4
|
||||
*/
|
||||
public static final String JAVA_ENDORSED_DIRS = getSystemProperty("java.endorsed.dirs");
|
||||
|
||||
/**
|
||||
* <p>The <code>java.ext.dirs</code> System Property. Path of extension directory
|
||||
* or directories.</p>
|
||||
|
@ -725,6 +736,7 @@ public class SystemUtils {
|
|||
* instance to operate.</p>
|
||||
*/
|
||||
public SystemUtils() {
|
||||
// no init.
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue