java.io.Closeable
, java.lang.AutoCloseable
, weblogic.WLSTInterpreter
public class WLSTInterpreter
extends java.lang.Object
This is a wrapper class to the Jython interpreter. It adds Weblogic specific extensions that enable you to run WLST in Embedded Mode from a Java client
NOTE: WLSTInterpreter is not designed to have multiple active instances within one process. If you need multiple simultaneous instances, then you should use multiple JVM processes with one WLSTInterpreter in each. For more information see http://www.jython.org/docs/javadoc/org/python/util/InteractiveInterpreter.htmlModifier and Type | Field | Description |
---|---|---|
static java.lang.String |
DISABLE_PLUGIN_JAR_LOADING_MODE |
Key used to specify whether or not to automatically load the WLST
dependency JARs from the
|
static java.lang.String |
ENABLE_SCRIPT_MODE |
Key used to specifies whether WLST should enable script mode.
|
static java.lang.String |
ONLINE_ONLY_MODE |
Key used to specify whether or not only online commands are supported
by this interpreter.
|
static java.lang.String |
SCRIPT_DIR |
Key used to specifies script directory.
|
static java.lang.String |
SKIP_WLS_MODULE_SCANNING |
Key used to specifies whether WLST should skip scanning of WLS modules.
|
Modifier and Type | Method | Description |
---|---|---|
void |
exec(java.lang.String string) |
Executes Jython commands that are passed in as a string.
|
void |
execfile(java.lang.String string) |
Executes Jython commands that are passed in as a file.
|
java.lang.ClassLoader |
getClassLoader() |
|
boolean |
getDisablePluginJarLoadingMode() |
Get the disablePluginJarLoadingMode setting.
|
boolean |
getDisconnected() |
Get the disconnected setting.
|
boolean |
getEaseSyntax() |
Get the easeSyntax setting.
|
org.python.core.PyObject |
getOfflineCMO() |
Get the offline cmo value.
|
org.python.core.PyObject |
getOfflinePrompt() |
Get the offline prompt value.
|
boolean |
getOnlineOnlyMode() |
Get the onlineOnlyMode setting.
|
boolean |
getRecordAll() |
Get the recordAll setting.
|
boolean |
getRecordingInProgress() |
Get the recordingInProgress setting.
|
java.lang.String |
getScriptDir() |
Get the scriptDir setting.
|
boolean |
getScriptMode() |
Get the scriptMode setting.
|
boolean |
isStandalone() |
Check if it's standalone WLST or not.
|
boolean |
runsource(java.lang.String command,
java.lang.String source,
weblogic.management.scripting.JLineWrapper wrapper) |
|
void |
setClassLoader(java.lang.ClassLoader cls) |
|
void |
setDisablePluginJarLoadingMode(boolean disablePluginJarLoadingMode) |
Set the disablePluginJarLoadingMode setting.
|
void |
setDisconnected(boolean disconnected) |
Set the disconnected setting.
|
void |
setEaseSyntax(boolean easeSyntax) |
Set the easeSyntax setting.
|
void |
setOfflineCMO(org.python.core.PyObject offlineCMO) |
Set the offline cmo value.
|
void |
setOfflinePrompt(org.python.core.PyObject offlinePrompt) |
Set the offline prompt value.
|
void |
setOnlineOnlyMode(boolean onlineOnlyMode) |
Set the onlineOnlyMode setting.
|
void |
setRecordAll(boolean recordAll) |
Set the recordAll setting.
|
void |
setRecordingInProgress(boolean recordingInProgress) |
Set the recordingInProgress setting.
|
void |
setScriptMode(boolean scriptMode) |
Set the scriptMode setting.
|
public static final java.lang.String SKIP_WLS_MODULE_SCANNING
public static final java.lang.String ENABLE_SCRIPT_MODE
public static final java.lang.String SCRIPT_DIR
public static final java.lang.String ONLINE_ONLY_MODE
public static final java.lang.String DISABLE_PLUGIN_JAR_LOADING_MODE
public void setClassLoader(java.lang.ClassLoader cls)
public java.lang.ClassLoader getClassLoader()
getClassLoader
in interface weblogic.WLSTInterpreter
public void exec(java.lang.String string)
exec
in interface weblogic.WLSTInterpreter
string
- Stringpublic void execfile(java.lang.String string)
execfile
in interface weblogic.WLSTInterpreter
string
- Stringpublic boolean runsource(java.lang.String command, java.lang.String source, weblogic.management.scripting.JLineWrapper wrapper)
public boolean getEaseSyntax()
getEaseSyntax
in interface weblogic.WLSTInterpreter
public void setEaseSyntax(boolean easeSyntax)
setEaseSyntax
in interface weblogic.WLSTInterpreter
easeSyntax
- - true if easeSyntax is enabled, false otherwisepublic boolean getScriptMode()
getScriptMode
in interface weblogic.WLSTInterpreter
public void setScriptMode(boolean scriptMode)
scriptMode
- - true if running in script mode, false otherwisepublic boolean getOnlineOnlyMode()
public void setOnlineOnlyMode(boolean onlineOnlyMode)
onlineOnlyMode
- - true if running in onlineOnly mode, false otherwisepublic boolean getDisablePluginJarLoadingMode()
getDisablePluginJarLoadingMode
in interface weblogic.WLSTInterpreter
public void setDisablePluginJarLoadingMode(boolean disablePluginJarLoadingMode)
disablePluginJarLoadingMode
- - true to disable plugin jar loading, false otherwisepublic boolean getRecordingInProgress()
public void setRecordingInProgress(boolean recordingInProgress)
setRecordingInProgress
in interface weblogic.WLSTInterpreter
recordingInProgress
- - true if recording, false otherwisepublic boolean getRecordAll()
public void setRecordAll(boolean recordAll)
setRecordAll
in interface weblogic.WLSTInterpreter
recordAll
- - true if recording all, false otherwisepublic org.python.core.PyObject getOfflineCMO()
getOfflineCMO
in interface weblogic.WLSTInterpreter
public void setOfflineCMO(org.python.core.PyObject offlineCMO)
offlineCMO
- - offline cmo valuepublic org.python.core.PyObject getOfflinePrompt()
getOfflinePrompt
in interface weblogic.WLSTInterpreter
public void setOfflinePrompt(org.python.core.PyObject offlinePrompt)
offlinePrompt
- - offline cmo valuepublic boolean getDisconnected()
public void setDisconnected(boolean disconnected)
setDisconnected
in interface weblogic.WLSTInterpreter
disconnected
- - true if disconnected, false otherwisepublic boolean isStandalone()
isStandalone
in interface weblogic.WLSTInterpreter
public java.lang.String getScriptDir()
getScriptDir
in interface weblogic.WLSTInterpreter