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:
Gary D. Gregory 2003-10-23 03:55:34 +00:00
parent d776d26889
commit 451ae3e4e7
1 changed files with 13 additions and 1 deletions

View File

@ -69,7 +69,7 @@
* @author Tetsuya Kaneuchi * @author Tetsuya Kaneuchi
* @author Rafal Krupinski * @author Rafal Krupinski
* @since 1.0 * @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 { public class SystemUtils {
@ -132,6 +132,17 @@ public class SystemUtils {
*/ */
public static final String JAVA_COMPILER = getSystemProperty("java.compiler"); 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 * <p>The <code>java.ext.dirs</code> System Property. Path of extension directory
* or directories.</p> * or directories.</p>
@ -725,6 +736,7 @@ public class SystemUtils {
* instance to operate.</p> * instance to operate.</p>
*/ */
public SystemUtils() { public SystemUtils() {
// no init.
} }
//----------------------------------------------------------------------- //-----------------------------------------------------------------------