This legacy class used to be the entry point (main class) in SoapUI. It is no longer used in ReadyAPI, but it's still around because some methods and fields are accessed from plugins and Groovy scripts.
Modifiers | Name | Description |
---|---|---|
static java.lang.String |
CURRENT_LOADUI_WORKSPACE |
|
static java.lang.String |
CURRENT_SOAPUI_WORKSPACE |
|
static java.lang.String |
DEFAULT_DESKTOP |
|
static java.lang.String |
DEFAULT_WORKSPACE_FILE |
|
static java.lang.String |
ERROR_PAGE_CAN_NOT_LOAD |
|
static java.lang.String |
LOADUI_AGENT_WORKSPACE_FILE |
|
static java.lang.String |
PROPERTIES_TAB_PANEL_NAME |
|
static java.lang.String |
PROPERTY_CHANGE_REST_METHOD_ACTION_NAME |
|
static java.lang.String |
READY_API_TITLE |
|
static java.lang.String |
SOAPUI_RESOURCE_PATTERNS_DIRECTORY_PATH |
|
static java.lang.String |
SOAPUI_SPLASH |
|
static java.lang.String |
SOAPUI_VERSION |
Use ReadyApiCoreModule.READY_API_VERSION instead. |
static java.lang.String |
STARTER_PAGE_ERROR_URL |
|
static java.lang.String |
STARTER_PAGE_HEADER |
|
static java.lang.String |
STARTER_PAGE_TOOL_TIP |
|
static java.lang.String |
STARTER_PAGE_URL |
|
static Logger |
log |
Use of this logger is strongly discouraged. |
Type Params | Return Type | Name and description |
---|---|---|
|
static Workspace |
agentWorkspace() |
|
static Workspace |
createWorkspace() |
|
static Logger |
ensureGroovyLog() |
|
static SoapUIActionRegistry |
getActionRegistry() |
|
static CmdLineRunner |
getCmdLineRunner() |
|
static SoapUIDesktop |
getDesktop() |
|
static Logger |
getErrorLog() |
|
static SoapUIFactoryRegistry |
getFactoryRegistry() |
|
static javax.swing.JFrame |
getFrame() The frame property is never set, so this method throws an exception.
|
|
static java.util.List<java.awt.Image> |
getFrameIcons() |
|
static TestPropertyHolder |
getGlobalProperties() |
|
static SoapUIListenerRegistry |
getListenerRegistry() |
|
static Log4JMonitor |
getLogMonitor() |
|
static java.lang.String[] |
getMainArgs() The main args property is never set, so this method throws an exception. |
|
static MockEngine |
getMockEngine() |
|
static Navigator |
getNavigator() |
|
static Navigator |
getNavigatorByRootName(java.lang.String rootName) |
|
static Settings |
getSettings() |
|
static SoapUICore |
getSoapUICore() Deprecated, use ApplicationEnvironment.getSoapUICore instead |
|
static java.util.Timer |
getSoapUITimer() |
|
static TestMonitor |
getTestMonitor() |
|
static java.util.concurrent.ThreadPoolExecutor |
getThreadPool() |
|
static JXToolBar |
getToolBar() |
|
static java.lang.String |
getVersion(java.lang.String versionPropertyName) Use ReadyApiCoreModule.READY_API_VERSION instead. |
|
static Workspace |
getWorkspace() |
|
static void |
importPreferences(java.io.File file) |
|
static void |
initAutoSaveTimer() |
|
static void |
initDefaultCore() |
|
static javax.swing.JComponent |
initLogMonitor(boolean hasDefault, java.lang.String defaultName, Log4JMonitor logMonitor) |
|
static boolean |
isBrowserDisabled() |
|
static boolean |
isCommandLine() Deprecated, use RuntimeEnvironment#isCommandLine()#isCommandLine() instead |
|
static boolean |
isSelectingMostRecentlyUsedDesktopPanelOnClose() |
|
static boolean |
isStandalone() Deprecated, use RuntimeEnvironment#isStandalone()#isStandalone() instead |
|
static void |
log(java.lang.Object message) |
|
static void |
logError(java.lang.Throwable e) |
|
static void |
logError(java.lang.Throwable e, java.lang.String message) |
|
static boolean |
processCommandLineArgs(org.apache.commons.cli.CommandLine cmd) |
|
static java.lang.String |
saveSettings() |
|
static void |
setCmdLineRunner(CmdLineRunner runner) |
|
static void |
setDesktop(SoapUIDesktop desktop) |
|
static void |
setLaunchedTestRunner(java.lang.Boolean launchedTestRunner) Unlike in the old SoapUI code, in ReadyAPI this method doesn't do anything. |
|
static void |
setLogMonitor(Log4JMonitor monitor) |
|
static void |
setNavigator(Navigator navigator) |
|
static void |
setNavigatorToMap(Navigator navigator) |
|
void |
setSoapUICore(SoapUICore core) |
|
void |
setSoapUICore(SoapUICore core, boolean isCommandLine) |
|
static void |
setStandalone(boolean standalone) |
|
static void |
setTestMonitor(TestMonitor monitor) |
|
static void |
setWorkspace(Workspace workspace) |
|
static void |
shutdown() |
|
static void |
updateProxyFromSettings() |
|
static boolean |
usingGraphicalEnvironment() |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Use ReadyApiCoreModule.READY_API_VERSION instead. This should now only be used to compare save files with those from SoapUI.
Use of this logger is strongly discouraged. Logging should be done with standard SLF4J loggers, defined in each class that needs to log something.
The frame
property is never set, so this method throws an exception.
Use UISupport.getMainFrame() instead.
The main args property is never set, so this method throws an exception. Users who really want the arguments of the application can get it from the RuntimeMXBean.
Deprecated, use ApplicationEnvironment.getSoapUICore instead
Use ReadyApiCoreModule.READY_API_VERSION instead.
Deprecated, use RuntimeEnvironment#isCommandLine()#isCommandLine() instead
Deprecated, use RuntimeEnvironment#isStandalone()#isStandalone() instead
Unlike in the old SoapUI code, in ReadyAPI this method doesn't do anything.
launchedTestRunner
- a boolean that will be ignored in ReadyAPI