Administration action | Purpose |
---|---|
Action_Create | Create a new instance of a managed resource. |
Action_Delete | Delete an existing managed resource |
Action_Inquire | Inquire on one or more characteristics of a managed resource |
Action_InquireAll | Inquire on all characteristics of a managed resource |
Action_Update | Update one or more characteristics of a managed resource |
All resources do not necessarily implement these actions. For instance, it is not possible to create a queue manager using an administration message. Specific administration messages can extend the base set to provide additional actions that are specific to a resource.
Administration action | Setting method |
---|---|
Action_Create | create (MQeFields parms) |
Action_Delete | delete (MQeFields parms) |
Action_Inquire | inquire (MQeFields parms) |
Action_InquireAll | inquireAll (MQeFields parms) |
Action_Update | update( MQeFields parms ) |
This field determines how many times an action can be retried if the initial action fails. The retry occurs either the next time that the queue manager restarts or at the next interval set on the administration queue.
Administration action | Field type | Set and get methods |
---|---|---|
Admin_Parms | MQeFields | MQeFields getInputFields() |
Admin_Action | int | setAction (int action) |
Admin_TargetQMgr | ASCII | setTargetQMgr(String qmgr) |
Admin_MaxAttempts | int | setMaxAttempts(int attempts) |
Parent topic: Set the required fields in a message - Java