Package | Description |
---|---|
de.larssh.jes |
Handling of z/OS JES spools using Java technologies
|
Modifier and Type | Method and Description |
---|---|
JobStatus |
Job.getStatus()
The jobs status
|
static JobStatus |
JobStatus.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatus[] |
JobStatus.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
JesClient.exists(Job job,
JobStatus status)
Reloads the job from server and returns
true if the job is still
available and matches the given job status. |
List<Job> |
JesClient.list(String nameFilter,
JobStatus status)
Returns a list of all job IDs boxed into
Job objects matching the
given filters. |
List<Job> |
JesClient.list(String nameFilter,
JobStatus status,
String ownerFilter)
Returns a list of all job IDs boxed into
Job objects matching the
given filters. |
List<Job> |
JesClient.list(String nameFilter,
JobStatus status,
String ownerFilter,
int limit)
Returns a list of all job IDs boxed into
Job objects matching the
given filters. |
List<Job> |
JesClient.listFilled(String nameFilter,
JobStatus status)
Returns a list of all
Job objects matching the given filters. |
List<Job> |
JesClient.listFilled(String nameFilter,
JobStatus status,
String ownerFilter)
Returns a list of all
Job objects matching the given filters. |
List<Job> |
JesClient.listFilled(String nameFilter,
JobStatus status,
String ownerFilter,
int limit)
Returns a list of all
Job objects matching the given filters. |
protected void |
JesClient.setJesFilters(String nameFilter,
JobStatus status,
String ownerFilter,
int limit)
Sends
FTPCmd.SITE commands to set the
given filter values. |
Constructor and Description |
---|
Job(String jobId,
String name,
JobStatus status,
String owner)
This constructor creates a
Job in its simplest form. |
Job(String jobId,
String name,
JobStatus status,
String owner,
Optional<String> jesClass,
OptionalInt resultCode,
Optional<String> abendCode,
JobFlag... flags)
This constructor creates a
Job allowing to set any field. |
Copyright © 2025. All rights reserved.