Package COM.activesw.api.client
Class BrokerSetFailureInfo
- java.lang.Object
-
- COM.activesw.api.client.BrokerSetFailureInfo
-
public class BrokerSetFailureInfo extends java.lang.Object
This class is used to report failures from the BrokerAdminClient.setEventTypesAndClientGroups() method.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String[]
client_group_names_to_destroy
The list of client groups which could not be destroyed.java.lang.String[]
client_group_names_to_modify
The list of client groups which could not be modified.java.lang.String[]
event_type_names_to_destroy
The list of event types which could not be destroyed.java.lang.String[]
event_type_names_to_modify
The list of event types which could not be modified.int
failure_type
Failure_type can be any of the FAILURE_TYPE_* values.static int
FAILURE_TYPE_BROKER
static int
FAILURE_TYPE_DEPENDENCY
static int
FAILURE_TYPE_PERMISSION
-
Constructor Summary
Constructors Constructor Description BrokerSetFailureInfo()
Create a failure information object.
-
-
-
Field Detail
-
FAILURE_TYPE_DEPENDENCY
public static final int FAILURE_TYPE_DEPENDENCY
- See Also:
- Constant Field Values
-
FAILURE_TYPE_PERMISSION
public static final int FAILURE_TYPE_PERMISSION
- See Also:
- Constant Field Values
-
FAILURE_TYPE_BROKER
public static final int FAILURE_TYPE_BROKER
- See Also:
- Constant Field Values
-
failure_type
public int failure_type
Failure_type can be any of the FAILURE_TYPE_* values.
-
event_type_names_to_destroy
public java.lang.String[] event_type_names_to_destroy
The list of event types which could not be destroyed.
-
client_group_names_to_destroy
public java.lang.String[] client_group_names_to_destroy
The list of client groups which could not be destroyed.
-
event_type_names_to_modify
public java.lang.String[] event_type_names_to_modify
The list of event types which could not be modified.
-
client_group_names_to_modify
public java.lang.String[] client_group_names_to_modify
The list of client groups which could not be modified.
-
-