|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConnLockingException | |
---|---|
com.ibm.tws.conn.model | |
com.ibm.tws.conn.plan | |
com.ibm.tws.zconn.model | |
com.ibm.tws.zconn.plan |
Uses of ConnLockingException in com.ibm.tws.conn.model |
---|
Methods in com.ibm.tws.conn.model that throw ConnLockingException | |
Identifier |
ConnModel.addTWSObject(TWSObject twsObject,
Context context)
Creates a new TWS model object. |
void |
ConnModel.removeTWSObject(java.lang.Class cl,
TWSKey twsKey,
Context context)
Removes a TWS model object by external key, checking that the object is not locked by any user. |
void |
ConnModel.removeTWSObject(java.lang.Class cl,
Identifier id,
Context context)
Removes a TWS model object by identifier, checking that the object is not locked by any user. |
TWSObject |
ConnModel.getTWSObject(java.lang.Class cl,
TWSKey twsKey,
boolean lock,
Context context)
Retrieves a TWS model object by external key, optionally locking it if requested. |
TWSObject |
ConnModel.getTWSObject(java.lang.Class cl,
Identifier id,
boolean lock,
Context context)
Retrieves a TWS model object by identifier, optionally locking it if requested. |
Identifier |
ConnModel.setTWSObject(TWSObject twsObject,
boolean isLocked,
boolean unlock,
Context context)
Updates a TWS model object, checking that the lock status is the expected one and optionally releasing the lock. |
void |
ConnModel.lockTWSObject(java.lang.Class cl,
Identifier id,
Context context)
Locks a TWS model object by identifier, checking that the object is not locked by any user. |
void |
ConnModel.lockTWSObject(java.lang.Class cl,
TWSKey twsKey,
Context context)
Locks a TWS model object by external key, checking that the object is not locked by any user. |
void |
ConnModel.unlockTWSObject(java.lang.Class cl,
Identifier id,
boolean force,
Context context)
Unlocks a TWS model object by identifier, checking that it is currently locked by the requesting user and session. |
void |
ConnModel.unlockTWSObject(java.lang.Class cl,
TWSKey twsKey,
boolean force,
Context context)
Unlocks a TWS model object by external key, checking that it is currently locked by the requesting user and session. |
Uses of ConnLockingException in com.ibm.tws.conn.plan |
---|
Methods in com.ibm.tws.conn.plan that throw ConnLockingException | |
void |
ConnPlan.startDomainWorkstation(Identifier id,
Context context)
This method starts the domain workstation. |
void |
ConnPlan.stopDomainWorkstation(Identifier id,
Context context)
This method stops the domain workstation. |
void |
ConnPlan.linkDomainWorkstation(Identifier id,
Context context)
This method links the domain workstation. |
void |
ConnPlan.unlinkDomainWorkstation(Identifier id,
Context context)
This method unlinks the domain workstation. |
void |
ConnPlan.switchDomainManager(Identifier id,
Identifier newMgr,
Context context)
This method changes the Domain manager of a given domain. |
void |
ConnPlan.startWorkstation(Identifier id,
boolean manager,
Context context)
Starts the Workstation Instance. |
void |
ConnPlan.stopWorkstation(Identifier id,
Context context)
Stops the Workstation Instance. |
void |
ConnPlan.linkWorkstation(Identifier id,
Context context)
Links the Workstation Instance. |
void |
ConnPlan.unlinkWorkstation(Identifier id,
Context context)
Unlinks the Workstation Instance. |
void |
ConnPlan.setWorkstationLimit(Identifier id,
int limit,
Context context)
Sets the Workstation Instance new Limit. |
void |
ConnPlan.setWorkstationFence(Identifier id,
int fence,
Context context)
Sets the Workstation Instance new Fence. |
void |
ConnPlan.setWindowsUserPassword(WindowsUserInPlan winUser,
Context context)
Sets the password for the specified user. |
TWSObject |
ConnPlan.getPlanObject(java.lang.Class cl,
Identifier id,
Context context)
This method return the Plan Object of the specified class with the given Identifier passed in input |
QueryResult |
ConnPlan.queryPlanObject(java.lang.Class cl,
QueryFilter filter,
int howMany,
Context context)
Return a list of object according with the Filter passed in input. |
QueryResult |
ConnPlan.queryNext(QueryPlanContext queryContext)
Return a list of objects according with the Filter present in the context. |
void |
ConnPlan.releaseJobInstance(Identifier jobId,
Context context)
Release the specified job. |
void |
ConnPlan.holdJobInstance(Identifier jobId,
Context context)
Holds the specified job. |
void |
ConnPlan.confirmJobInstance(Identifier jobId,
FlowNodeInternalStatusType status,
Context context)
Confirm the specified job with the specified status. |
void |
ConnPlan.killJobInstance(Identifier jobId,
Context context)
Kill the specified job. |
void |
ConnPlan.rerunJobInstance(Identifier jobId,
RerunDetails details,
Context context)
Rerun the specified job. |
void |
ConnPlan.cancelJobInstance(Identifier jobId,
boolean pending,
Context context)
Cancel the specified job. |
void |
ConnPlan.releaseAllJobInstanceDependencies(Identifier jobId,
Context context)
Release all the dependencies from the specified job. |
void |
ConnPlan.releaseJobInstanceDependencies(Identifier jobId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List internalDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Release the specified dependencies from the specified job. |
void |
ConnPlan.removeJobInstanceDependencies(Identifier jobId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List internalDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Remove the specified dependencies from the specified job. |
void |
ConnPlan.addJobInstanceDependencies(Identifier jobId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List internalDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Add the specified dependencies to the specified job. |
Identifier |
ConnPlan.addJobInstance(JobInPlan job,
Context context)
Add the input job instance to the current Plan. |
java.util.List |
ConnPlan.addJobStreamInstance(JobStreamInPlan jobStream,
Context context)
Add the input job stream instance to the current Plan. |
JobInPlan |
ConnPlan.makeJobInPlanIntoJobStreamInstance(Identifier jobDefinitionId,
Identifier jobStreamId,
java.lang.String alias,
Context context)
This method generates a JobInPlan object starting from a JobDefinition taken from the database. |
JobInPlan |
ConnPlan.makeJobInPlan(Identifier jobDefinitionId,
Identifier workstationId,
java.lang.String alias,
Context context)
This method generates a JobInPlan object starting from a JobDefinition taken from the database. |
JobStreamInPlan |
ConnPlan.makeJobStreamInPlan(Identifier jobStreamId,
java.util.Date inputArrivalTime,
java.lang.String alias,
Context context)
This method generates a JobStreamInPlan object starting from a JobStream taken from the database. |
Identifier |
ConnPlan.addJobInstanceIntoJobStreamInstance(Identifier jobDefinitionId,
Identifier jobStreamId,
java.lang.String alias,
Context context)
This method performs the operations of makeJobInPlanIntoJobStreamInstance and addJobInstance in a single invokation, without allowing user manipulation of the object. |
Identifier |
ConnPlan.addJobInstance(Identifier jobDefinitionId,
Identifier workstationId,
java.lang.String alias,
Context context)
This method performs the operations of makeJobInPlan and addJobInstance in a single invokation, without allowing user manipulation of the object. |
java.util.List |
ConnPlan.addJobStreamInstance(Identifier jobStreamId,
java.util.Date inputArrivalTime,
java.lang.String alias,
Context context)
This method performs the operations of makeJobStreamInPlan and addJobStreamInstance in a single invokation, without allowing user manipulation of the object. |
void |
ConnPlan.setJobInstance(JobInPlan job,
Context context)
Change properties of the specified job. |
void |
ConnPlan.releaseJobStreamInstance(Identifier jobStreamId,
Context context)
Release the specified job stream. |
void |
ConnPlan.holdJobStreamInstance(Identifier jobStreamId,
Context context)
Holds the specified job stream. |
void |
ConnPlan.cancelJobStreamInstance(Identifier jobStreamId,
boolean pending,
Context context)
Cancel the specified job stream. |
void |
ConnPlan.releaseAllJobStreamInstanceDependencies(Identifier jobStreamId,
Context context)
Release all the dependencies from the specified job stream. |
void |
ConnPlan.releaseJobStreamInstanceDependencies(Identifier jobStreamId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Release the specified dependencies from the specified job stream. |
void |
ConnPlan.removeJobStreamInstanceDependencies(Identifier jobStreamId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Remove the specified dependencies from the specified job stream. |
void |
ConnPlan.addJobStreamInstanceDependencies(Identifier jobStreamId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Add the specified dependencies to the specified job stream. |
void |
ConnPlan.monitorAllJobsInStreamInstance(Identifier jobStreamId,
boolean monitor,
Context context)
Set/deset the monitor flag on all the job instance part of the specified job stream instance. |
Identifier |
ConnPlan.setJobStreamInstance(JobStreamInPlan jobStream,
Context context)
Change properties of the specified job stream. |
void |
ConnPlan.replyPrompt(Identifier id,
boolean answer,
Context context)
Reply 'YES' (true) or 'NO' (false) to the sopecified prompt. |
void |
ConnPlan.setResourceInstance(ResourceInPlan resource,
Context context)
Change properties of the specified resource. |
EngineInformation |
ConnPlan.getEngineInformation(Context context)
Returns the engine information taken from the current Plan. |
GetJobOutputResult |
ConnPlan.getJobInstanceOutput(GetJobOutputContext context)
Return output in bunch, after the first one, of a JobInPlan. |
GetJobOutputResult |
ConnPlan.getJobInstanceOutput(Identifier jobId,
int lines,
Context context)
Return the first bunch of a JobInPlan output. |
byte[] |
ConnPlan.connectToHostCpu(Identifier workstationId,
java.lang.String connectionString,
byte[] command,
Context context)
This method connects a remote workstation via TCP/IP (with options), sends a command to it, and receives the result from it. |
Identifier |
ConnPlan.createPlan(SymphonyInPlanKey key,
java.util.Date startTime,
long timeExtension,
Context context)
This method is used to create a Trial or a Forecast plan, depending on the type specified in the SymphonyInPlanKey, with the name specified in the key itself. |
Identifier |
ConnPlan.createPlanExtension(SymphonyInPlanKey key,
long timeExtension,
Context context)
This method is used to create a Trial Plan extension starting from the current Plan. |
java.util.List |
ConnPlan.countPlanObject(java.lang.Class cl,
QueryFilter filter,
java.lang.String groupField,
Context context)
This method return aggregate statistics on plan objects. |
Uses of ConnLockingException in com.ibm.tws.zconn.model |
---|
Methods in com.ibm.tws.zconn.model that throw ConnLockingException | |
Identifier |
ZConnModel.addTWSObject(TWSObject twsObject,
Context context)
Add Object in TWS model |
void |
ZConnModel.removeTWSObject(java.lang.Class cl,
TWSKey twsKey,
Context context)
removeTWSObject |
void |
ZConnModel.removeTWSObject(java.lang.Class cl,
Identifier id,
Context context)
removeTWSObject |
TWSObject |
ZConnModel.getTWSObject(java.lang.Class cl,
TWSKey twsKey,
boolean lock,
Context context)
This method return a TWSObject with the key passed in input |
TWSObject |
ZConnModel.getTWSObject(java.lang.Class cl,
Identifier id,
boolean lock,
Context context)
This method return a TWSObject with the identifier passed in input |
Identifier |
ZConnModel.setTWSObject(TWSObject daoobject,
boolean isLocked,
boolean unlock,
Context context)
This method update the TWSObject passed in input |
void |
ZConnModel.lockTWSObject(java.lang.Class cl,
Identifier id,
Context context)
Locks the TWSObject object identified by the given id. |
void |
ZConnModel.lockTWSObject(java.lang.Class cl,
TWSKey twsKey,
Context context)
Locks the TWSObject object identified by the given key. |
void |
ZConnModel.unlockTWSObject(java.lang.Class cl,
Identifier id,
boolean force,
Context context)
Unlocks the TWSObject object identified by the given id. |
void |
ZConnModel.unlockTWSObject(java.lang.Class cl,
TWSKey twsKey,
boolean force,
Context context)
Unlocks the TWSObject object identified by the given key. |
Uses of ConnLockingException in com.ibm.tws.zconn.plan |
---|
Methods in com.ibm.tws.zconn.plan that throw ConnLockingException | |
void |
ZConnPlan.startDomainWorkstation(Identifier id,
Context context)
This method starts the domain workstation. |
void |
ZConnPlan.stopDomainWorkstation(Identifier id,
Context context)
This method stops the domain workstation. |
void |
ZConnPlan.linkDomainWorkstation(Identifier id,
Context context)
This method links the domain workstation. |
void |
ZConnPlan.unlinkDomainWorkstation(Identifier id,
Context context)
This method unlinks the domain workstation. |
void |
ZConnPlan.switchDomainManager(Identifier id,
Identifier newMgr,
Context context)
This method changes the Domain manager of a given domain. |
void |
ZConnPlan.startWorkstation(Identifier id,
boolean manager,
Context context)
Starts the Workstation Instance. |
void |
ZConnPlan.stopWorkstation(Identifier id,
Context context)
Stops the Workstation Instance. |
void |
ZConnPlan.linkWorkstation(Identifier id,
Context context)
Links the Workstation Instance. |
void |
ZConnPlan.unlinkWorkstation(Identifier id,
Context context)
Unlinks the Workstation Instance. |
void |
ZConnPlan.setWorkstationLimit(Identifier id,
int limit,
Context context)
Sets the Workstation Instance new Limit. |
void |
ZConnPlan.setWorkstationFence(Identifier id,
int fence,
Context context)
Sets the Workstation Instance new Fence. |
void |
ZConnPlan.setWindowsUserPassword(WindowsUserInPlan winUser,
Context context)
Sets the password for the specified user. |
TWSObject |
ZConnPlan.getPlanObject(java.lang.Class cl,
Identifier id,
Context context)
This method return the Plan Object of the specified class with the given Identifier passed in input |
QueryResult |
ZConnPlan.queryPlanObject(java.lang.Class cl,
QueryFilter filter,
int howMany,
Context context)
Return a list of object according with the Filter passed in input. |
QueryResult |
ZConnPlan.queryNext(QueryPlanContext queryContext)
Return a list of objects according with the Filter present in the context. |
void |
ZConnPlan.releaseJobInstance(Identifier jobId,
Context context)
Release the specified job. |
void |
ZConnPlan.holdJobInstance(Identifier jobId,
Context context)
Holds the specified job. |
void |
ZConnPlan.confirmJobInstance(Identifier jobId,
FlowNodeInternalStatusType status,
Context context)
Confirm the specified job with the specified status. |
void |
ZConnPlan.killJobInstance(Identifier jobId,
Context context)
Kill the specified job. |
void |
ZConnPlan.rerunJobInstance(Identifier jobId,
RerunDetails details,
Context context)
Rerun the specified job. |
void |
ZConnPlan.cancelJobInstance(Identifier jobId,
boolean pending,
Context context)
Cancel the specified job. |
void |
ZConnPlan.releaseAllJobInstanceDependencies(Identifier jobId,
Context context)
Release all the dependencies from the specified job. |
void |
ZConnPlan.releaseJobInstanceDependencies(Identifier jobId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List internalDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Release the specified dependencies from the specified job. |
void |
ZConnPlan.removeJobInstanceDependencies(Identifier jobId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List internalDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Remove the specified dependencies from the specified job. |
void |
ZConnPlan.addJobInstanceDependencies(Identifier jobId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List internalDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Add the specified dependencies to the specified job. |
Identifier |
ZConnPlan.addJobInstance(JobInPlan job,
Context context)
Add the input job instance to the current Plan. |
java.util.List |
ZConnPlan.addJobStreamInstance(JobStreamInPlan jobStream,
Context context)
Add the input job stream instance to the current Plan. |
java.util.List |
ZConnPlan.addJobStreamInstance(java.lang.String name,
java.util.Date startTime,
java.util.Date deadlineTime,
int priority,
java.lang.String description,
java.lang.String group,
java.lang.String owner,
java.lang.String ownerDescription,
java.lang.String variableTable,
java.lang.String authorityGroup,
boolean holdAll,
DependenciesResolutionOption dependeciesResolution,
Context context)
Add the job stream instance. |
JobInPlan |
ZConnPlan.makeJobInPlanIntoJobStreamInstance(Identifier jobId,
Identifier jobStreamId,
java.lang.String alias,
Context context)
This method generates a JobInPlan object starting from a JobDefinition taken from the database. |
JobInPlan |
ZConnPlan.makeJobInPlan(Identifier jobId,
Identifier workstationId,
java.lang.String alias,
Context context)
This method generates a JobInPlan object starting from a JobDefinition taken from the database. |
JobStreamInPlan |
ZConnPlan.makeJobStreamInPlan(Identifier jobStreamId,
java.util.Date inputArrivalTime,
java.lang.String alias,
Context context)
This operation is not supported in z/OS environment. |
Identifier |
ZConnPlan.addJobInstanceIntoJobStreamInstance(Identifier jobId,
Identifier jobStreamId,
java.lang.String alias,
Context context)
This operation is not supported in z/OS environment. |
Identifier |
ZConnPlan.addJobInstance(Identifier jobId,
Identifier workstationId,
java.lang.String alias,
Context context)
This method Adds a Job Instance. |
java.util.List |
ZConnPlan.addJobStreamInstance(Identifier jobStreamId,
java.util.Date inputArrivalTime,
java.lang.String alias,
Context context)
This method adds a Job Stream to the current Plan. |
void |
ZConnPlan.setJobInstance(JobInPlan job,
Context context)
Change properties of the specified job. |
void |
ZConnPlan.releaseJobStreamInstance(Identifier jobStreamId,
Context context)
Release the specified job stream. |
void |
ZConnPlan.holdJobStreamInstance(Identifier jobStreamId,
Context context)
Holds the specified job stream. |
void |
ZConnPlan.cancelJobStreamInstance(Identifier jobStreamId,
boolean pending,
Context context)
Cancel the specified job stream. |
void |
ZConnPlan.releaseAllJobStreamInstanceDependencies(Identifier jobStreamId,
Context context)
Release all the dependencies from the specified job stream. |
void |
ZConnPlan.releaseJobStreamInstanceDependencies(Identifier jobStreamId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Release the specified dependencies from the specified job stream. |
void |
ZConnPlan.removeJobStreamInstanceDependencies(Identifier jobStreamId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Remove the specified dependencies from the specified job stream. |
void |
ZConnPlan.addJobStreamInstanceDependencies(Identifier jobStreamId,
java.util.List fileDeps,
java.util.List resourceDeps,
java.util.List promptDeps,
java.util.List externalDeps,
java.util.List internetworkDeps,
Context context)
Add the specified dependencies to the specified job stream. |
void |
ZConnPlan.monitorAllJobsInStreamInstance(Identifier jobStreamId,
boolean monitor,
Context context)
Set/deset the monitor flag on all the job instance part of the specified job stream instance. |
Identifier |
ZConnPlan.setJobStreamInstance(JobStreamInPlan jobStream,
Context context)
Change properties of the specified job stream. |
EngineInformation |
ZConnPlan.getEngineInformation(Context context)
Returns the engine information taken from the current Plan. |
GetJobOutputResult |
ZConnPlan.getJobInstanceOutput(GetJobOutputContext context)
Return output in bunch, after the first one, of a JobInPlan. |
GetJobOutputResult |
ZConnPlan.getJobInstanceOutput(Identifier jobId,
int lines,
Context context)
Return the first bunch of a JobInPlan output. |
void |
ZConnPlan.replyPrompt(Identifier id,
boolean answer,
Context context)
Reply 'YES' (true) or 'NO' (false) to the sopecified prompt. |
void |
ZConnPlan.setResourceInstance(ResourceInPlan resource,
Context context)
Change properties of the specified resource. |
Identifier |
ZConnPlan.createPlan(SymphonyInPlanKey key,
java.util.Date startTime,
long timeExtension,
Context context)
This method is used to create a Trial or a Forecast plan. |
Identifier |
ZConnPlan.createPlanExtension(SymphonyInPlanKey key,
long timeExtension,
Context context)
This method is used to create a Trial Plan extension starting from the current Plan. |
void |
ZConnPlan.beginModifyPlanObject(java.lang.Class cl,
Identifier id,
Context context)
Start the modify session for the TWSObject object identified by the given id. |
void |
ZConnPlan.commitModifyPlanObject(java.lang.Class cl,
Identifier id,
Context context)
Commit the modification to the TWSObject object identified by the given id. |
void |
ZConnPlan.rollbackModifyPlanObject(java.lang.Class cl,
Identifier id,
Context context)
rollback the modification to the TWSObject object identified by the given id. |
void |
ZConnPlan.commitJobRestartAndCleanup(java.lang.Class cl,
Identifier id,
Context context)
Commit the restartAndCleanup modification done on the TWSObject object identified by the given id. |
void |
ZConnPlan.rollbackJobRestartAndCleanup(java.lang.Class cl,
Identifier id,
Context context)
Rollback the restartAndCleanup modification done on the TWSObject object identified by the given id. |
void |
ZConnPlan.setWorkstationInstance(WorkstationInPlan workstation,
Context context)
Set the values for the input Workstation instance. |
void |
ZConnPlan.setWorkstationStatus(Identifier id,
Context context,
WorkstationStatus status,
WorkstationOperationOption options,
WorkstationInPlanKey alternateWorkstation)
Set the status for the input Workstation instance. |
void |
ZConnPlan.nopJobInstance(Identifier jobId,
Context context)
NOP the job instance specified in the jobId. |
void |
ZConnPlan.unNopJobInstance(Identifier jobId,
Context context)
Un NOP the job instance specified in the jobId. |
void |
ZConnPlan.executeJobInstance(Identifier jobId,
Context context)
Execute the job instance specified in the jobId. |
void |
ZConnPlan.executeJobAutomaticRecovery(Identifier jobId,
Context context)
Execute the automatic recovery for the job specified in the jobId. |
void |
ZConnPlan.modifyJobInstanceDependencies(Identifier jobId,
java.util.List removeResourceDeps,
java.util.List removeInternalDeps,
java.util.List removeExternalDeps,
java.util.List removeInternalSucc,
java.util.List removeExternalSucc,
java.util.List addResourceDeps,
java.util.List addInternalDeps,
java.util.List addExternalDeps,
java.util.List addInternalSucc,
java.util.List addExternalSucc,
Context context)
Modify the specified dependences of a job instance specified by the jobId. |
void |
ZConnPlan.setToWaitJobStreamInstance(Identifier id,
Context context)
Set the job stream instance to wait. |
void |
ZConnPlan.completeJobStreamInstance(Identifier id,
Context context)
Complete the job stream instance to wait. |
void |
ZConnPlan.holdJobStreamInstanceJobs(Identifier id,
boolean holdAll,
Context context)
Hold all the job stream jobs. |
void |
ZConnPlan.setJobInstanceStatus(Identifier jobId,
FlowNodeInternalStatusType status,
java.lang.String errorCode,
Context context)
Set the status of the job instance specified in the jobId. |
JobControlLanguage |
ZConnPlan.getJobJCL(Identifier jobId,
boolean isForRestartAndCleanup,
Context context)
Return the requested job JCL |
void |
ZConnPlan.setJobJCL(Identifier jobId,
JobControlLanguage jcl,
boolean isForRestartCleanup,
Context context)
Set the requested job JCL |
java.util.List |
ZConnPlan.getJobJCLPromptableVariableList(Identifier jobId,
Context context)
Return the requested job JCL promptable variable list. |
void |
ZConnPlan.setJobJCLPromptableVariableList(Identifier jobId,
java.util.List variables,
Context context)
Set the requested job JCL promptable variable list. |
JobControlLanguage |
ZConnPlan.solveJobJCLNoPromptableVariableList(Identifier jobId,
Context context)
Return the requested job JCL variable list. |
void |
ZConnPlan.beginJobRestartCleanup(Identifier jobId,
RestartCleanupOptions options,
Context context)
Execute Restart and Cleanup for the requested job instance. |
void |
ZConnPlan.executeJobRestartCleanup(Identifier jobId,
java.lang.String errorCode,
java.lang.String userData,
java.lang.String reason,
Context context)
Execute Restart and Cleanup for the requested job instance. |
java.util.List |
ZConnPlan.getJobCleanupResult(Identifier jobId,
Context context)
Returns Cleanup result for the requested job instance. |
DataSetsListResult |
ZConnPlan.getJobDataSetsWithAutomaticRecovery(Identifier jobId,
Context context)
Returns the data set list for the requested job instance and the suggested restart step. |
java.util.List |
ZConnPlan.getJobDataSets(Identifier jobId,
Context context)
Returns the data set list for the requested job instance. |
void |
ZConnPlan.setJobDataSets(Identifier jobId,
java.util.List dataSets,
Context context)
Sets the data set list for the requested job instance. |
java.util.List |
ZConnPlan.getJobRestartSteps(Identifier jobId,
java.util.List stepList,
boolean[] stepListCheck,
Context context)
Returns the restart step list and if is checked for the requested job instance. |
void |
ZConnPlan.setJobRestartSteps(Identifier jobId,
java.util.List stepList,
Context context)
Sets the restart step list for the requested job instance. |
GetJobOutputResult |
ZConnPlan.getJobInstanceRecoveryOutput(GetJobOutputContext context)
Return the requested recovery job output informations |
GetJobOutputResult |
ZConnPlan.getJobInstanceRecoveryOutput(Identifier jobId,
int numOfLinesToRead,
Context context)
Return the requested recovery job output informations |
byte[] |
ZConnPlan.connectToHostCpu(Identifier workstationId,
java.lang.String connectionString,
byte[] command,
Context context)
Return the byte array result of the invocation of the access method associated to the input Workstation. |
void |
ZConnPlan.addJobInstanceSuccessors(Identifier jobId,
java.util.List internalDeps,
java.util.List externalDeps,
Context context)
Add the specified successor dependencies to the specified job. |
void |
ZConnPlan.removeJobInstanceSuccessors(Identifier jobId,
java.util.List internalDeps,
java.util.List externalDeps,
Context context)
Remove the specified successors from the job identified by jobId |
void |
ZConnPlan.setWholeJobInstance(JobInPlan job,
boolean changeStatus,
java.util.List removeResourceDeps,
java.util.List removeInternalDeps,
java.util.List removeExternalDeps,
java.util.List removeInternalSucc,
java.util.List removeExternalSucc,
java.util.List addResourceDeps,
java.util.List addInternalDeps,
java.util.List addExternalDeps,
java.util.List addInternalSucc,
java.util.List addExternalSucc,
Context context)
Change properties and dependencies of the specified job in a single atomic action |
QueryResult |
ZConnPlan.queryJobInstanceResourceUsage(QueryFilter filter,
int howMany,
Context context)
Returns the list of Job In plan objects that are holding or waiting on the resource specified in the filter |
QueryResult |
ZConnPlan.queryNextJobInstanceResourceUsage(QueryPlanContext queryContext)
Return a list of JobInPlan Objects holding or waiting ona given resource according with the query context passed in input This list is contained in the QueryResult object |
void |
ZConnPlan.beginJobRestartCleanupWithAR(Identifier jobId,
RestartCleanupOptions options,
Context context)
Starts the Restart and Cleanup (with AR) for the requested job instance. |
void |
ZConnPlan.beginJobJCL(Identifier id,
Context context)
Start the modify session for the JCL of the job identified by the given id. |
void |
ZConnPlan.commitJobJCL(Identifier jobId,
Context context)
Commit the JCL modification done on the job identified by the given id. |
void |
ZConnPlan.rollbackJobJCL(Identifier jobId,
boolean forJCLPREP,
Context context)
Rollback the JCL modification done on the job identified by the given id. |
java.util.List |
ZConnPlan.countPlanObject(java.lang.Class cl,
QueryFilter filter,
java.lang.String groupField,
Context context)
This method returns aggregate statistics on plan objects. |
void |
ZConnPlan.killFTAJobInstance(Identifier jobId,
Context context)
Kill the FTA job instance specified in the jobId. |
void |
ZConnPlan.killRecoveryJobInstance(Identifier jobId,
Context context)
Kill the recovery job instance specified in the jobId. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |