Table of Contents | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Use of commands
- The
...
- <show_
...
- jobs> command
...
- shows an outdated behaviour, it is not recognizing the subfolders of the
...
- hot folder and therefore the subfolders are not
...
- included with the xml
...
- response of this command.
- The
...
- <show_
...
- state> command is
...
- more
...
- intelligent
...
- . With this command
...
- you can request folders and subfolders
...
- in a more performant way.
...
Examples for commands
Code Block | ||
---|---|---|
| ||
<show_state subsystems="folder job" what="folders"/>
|
will give return all jobs in all folders. the The structure of the response - xml will reflect the structure of the folders.
To get receive just the first level of a folder - structure onlyuse this command:
Code Block | ||
---|---|---|
| ||
<show_state what="folders job_chains no_subfolders" />
|
This will result in a an xml - response with all folders and files on of the first level 1 of the hotfolderhot folder.
To get receive the structure of a subfolder, e.g. with name "oh", use the following command:
Code Block | ||
---|---|---|
| ||
<show_state what="folders job_chains no_subfolders" path="/oh"/> |
will give the requested response.
This has been tested to work for a JobScheduler release I did test this on a JobScheduler Version 1.3.9.0211.
Example for use with a Java class
See the following example a short example, how to use the SOSJobSchedulerModel paket package:
Code Block | ||||
---|---|---|---|---|
| ||||
@Test
public final void testCreateShowJobsViaState() {
JSCmdShowState objCmdShowState = objFactory.createShowState(); // http://localhost:4444/doc/en/xml/show_state.xml
objCmdShowState.setMaxTaskHistory(BigInteger.valueOf(100));
// objCmdShowState.setWhat("folders job_chains no_subfolders");
objCmdShowState.setWhat("folders job_chains");
objCmdShowState.run();
State objState = objCmdShowState.getState();
Folder objFolder = objState.getFolder();
if (objFolder != null) {
TraverseFolders(objFolder);
}
/**
* Jobs only with all Folders:
* <show_state subsystems="folder job" what="folders"/>
*
* what for folder view in show_state
*
* <show_state what="folders job_chains no_subfolders" path="/oh"/>
*/
}
private void TraverseFolders(Folder pobjFolder) {
@SuppressWarnings("unused")
final String conMethodName = conClassName + "::TraverseFolders";
for (Object objAnObject : pobjFolder.getFileBasedOrJobsOrFolders()) {
if (objAnObject instanceof FileBased) {
FileBased objFB = (FileBased) objAnObject;
logger.debug("file = " + objFB.getFile());
}
else
if (objAnObject instanceof JobChains) {
JobChains objJobChains = (JobChains) objAnObject;
for (JobChain objJobChain : objJobChains.getJobChain()) {
logger.debug(objJobChain.getName());
}
}
else
if (objAnObject instanceof Jobs) {
Jobs objJobs = (Jobs) objAnObject;
for (Job objJob : objJobs.getJob()) {
logger.debug(objJob.getName());
}
}
else
if (objAnObject instanceof Folders) {
Folders objFolders = (Folders) objAnObject;
for (Folder objFolder : objFolders.getFolder()) {
TraverseFolders(objFolder);
}
}
else
if (objAnObject instanceof Orders) {
Orders objOrders = (Orders) objAnObject;
for (Order objOrder : objOrders.getOrder()) {
logger.debug(objOrder.getName());
}
}
else
if (objAnObject instanceof ProcessClasses) {
ProcessClasses objProcessClasses = (ProcessClasses) objAnObject;
for (ProcessClass objProcessClass : objProcessClasses.getProcessClass()) {
logger.debug(objProcessClass.getName());
}
}
}
} // private void TraverseFolders
|