SettableBean
, WLDFBean
, WLDFNotificationBean
public interface WLDFScriptActionBean extends WLDFNotificationBean
Configures an action that can execute an external command-line process. This action type can be used to execute custom scripts when a policy rule is triggered.
Note that any child process forked by an action of this type will have all the rights and privileges of the WebLogic Server process that spawns it. Care must be taken that the target script is available and can be read/executed by the system-level identity that owns the WebLogic Server process.
Modifier and Type | Method | Description |
---|---|---|
java.util.Properties |
getEnvironment() |
A map of environment variables to set for the child process.
|
java.lang.String[] |
getParameters() |
An array of ordered command-line arguments to the target script.
|
java.lang.String |
getPathToScript() |
The full path to the script to execute.
|
java.lang.String |
getWorkingDirectory() |
The working directory for the child process.
|
void |
setEnvironment(java.util.Properties environment) |
Set environment for the script
|
void |
setParameters(java.lang.String[] parameters) |
Set parameters to be passed to the script
|
void |
setPathToScript(java.lang.String pathToScript) |
Set path to script
|
void |
setWorkingDirectory(java.lang.String workingDirectory) |
Set working directory
|
getTimeout, isEnabled, setEnabled, setTimeout
java.lang.String getWorkingDirectory()
void setWorkingDirectory(java.lang.String workingDirectory)
java.lang.String getPathToScript()
void setPathToScript(java.lang.String pathToScript)
pathToScript
- Path to scriptjava.util.Properties getEnvironment()
void setEnvironment(java.util.Properties environment)
environment
- Environment for the scriptjava.lang.String[] getParameters()
void setParameters(java.lang.String[] parameters)
parameters
- Parameters to be passed to the script