public static class ActivationGroupDesc.CommandEnvironment extends Object implements Serializable
Startup options for ActivationGroup implementations. This class allows overriding default system properties and specifying implementation-defined options for ActivationGroups.
public CommandEnvironment(String cmdpath, String[] argv)
Create a CommandEnvironment with all the necessary information.
cmdpath
- the name of the java executable, including the full path, or null
, meaning "use rmid's default". The named program must be able to accept multiple -Dpropname=value
options (as documented for the "java" tool)argv
- extra options which will be used in creating the ActivationGroup. Null has the same effect as an empty list.public String getCommandPath()
Fetch the configured path-qualified java command name.
null
if configured to accept the defaultpublic String[] getCommandOptions()
Fetch the configured java command options.
null
.public boolean equals(Object obj)
Compares two command environments for content equality.
equals
in class Object
obj
- the Object to compare withHashtable
public int hashCode()
Return identical values for similar CommandEnvironment
s.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.