01: package com.bostechcorp.cbesb.console.pub;
02:
03: import com.bostechcorp.cbesb.console.common.BaseRPCResultInfo;
04: import com.google.gwt.user.client.rpc.IsSerializable;
05:
06: public class JmxAssemblyObj extends BaseRPCResultInfo implements
07: IsSerializable {
08:
09: private String name;
10: private JmxComponentObj[] componentList = new JmxComponentObj[] {};
11: private String endpointStatusChanged = null;
12: private boolean statisticChanged = false;
13:
14: public static final int REFRESH_GET_ASSEMLY_OBJ = 1;
15:
16: public static final int WAIT_FOR_STATE_CHANGE = 2;
17: public static final int WAIT_FOR_STATISTICS_CHANGE = 3;
18:
19: public String getName() {
20: return name;
21: }
22:
23: public void setName(String name) {
24: this .name = name;
25: }
26:
27: public JmxComponentObj[] getComponentList() {
28: return componentList;
29: }
30:
31: public void setComponentList(JmxComponentObj[] componentList) {
32: this .componentList = componentList;
33: }
34:
35: public JmxAssemblyObj(String name) {
36: super ();
37: this .name = name;
38: }
39:
40: public JmxAssemblyObj() {
41: super ();
42:
43: }
44:
45: /**
46: * @return the endpointStatusChanged
47: */
48: public String getEndpointStatusChanged() {
49: return endpointStatusChanged;
50: }
51:
52: /**
53: * @param endpointStatusChanged the endpointStatusChanged to set
54: */
55: public void setEndpointStatusChanged(String endpointStatusChanged) {
56: this .endpointStatusChanged = endpointStatusChanged;
57: }
58:
59: public boolean isStatisticChanged() {
60: return statisticChanged;
61: }
62:
63: public void setStatisticChanged(boolean statisticChanged) {
64: this.statisticChanged = statisticChanged;
65: }
66:
67: }
|