|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConnIntegrityException | |
---|---|
com.ibm.tws.conn.exception | |
com.ibm.tws.conn.model | |
com.ibm.tws.zconn.model | |
com.ibm.tws.zconn.plan |
Uses of ConnIntegrityException in com.ibm.tws.conn.exception |
---|
Subclasses of ConnIntegrityException in com.ibm.tws.conn.exception | |
class |
ConnDomainRefByWorkstationNotExistException
This exception is thrown when trying to add or modify a workstation and the domain referenced by workstation does not exist. |
class |
ConnDuplicationException
This exception is thrown when tring to create an object that already exist or when changing the key of an object with a key that belongs to an existing object. |
class |
ConnExistReferenceException
This exception is thrown when trying to delete an object that is referenced by other objects |
class |
ConnFlowTargetRefByIdNotExistException
This exception is thrown when trying to add or modify an object with a parent that does not exist |
class |
ConnLoopException
This exception is thrown when trying to update an object with a parent that is already an ancestor of the object itself. |
class |
ConnParentNotExistException
This eception is thrown when trying to add or modify an object with a parent that does not exist |
class |
ConnRecJobNotExistException
This eception is thrown when trying to add or modify a job definition and the recovery job referenced by the job definition does not exist." |
class |
ConnSelfReferenceException
This exception is thrown when trying to update an object that reference itself. |
class |
ConnWorkstationDomainManagerExistException
This exception is throws when trying to create/modifiy a workstaion defined as Domain Manager when another workstation is already defined as domain manager. |
Uses of ConnIntegrityException in com.ibm.tws.conn.model |
---|
Methods in com.ibm.tws.conn.model that throw ConnIntegrityException | |
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 ConnIntegrityException in com.ibm.tws.zconn.model |
---|
Methods in com.ibm.tws.zconn.model that throw ConnIntegrityException | |
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 ConnIntegrityException in com.ibm.tws.zconn.plan |
---|
Methods in com.ibm.tws.zconn.plan that throw ConnIntegrityException | |
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.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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |