01: package com.bostechcorp.cbesb.console.common;
02:
03: import com.google.gwt.user.client.rpc.IsSerializable;
04:
05: public class ConsoleSettingResult extends BaseRPCResultInfo implements
06: IsSerializable {
07:
08: private boolean saInEndpointViewChanged = false;
09:
10: private String saInEndpointView = "one";
11:
12: public boolean isSaInEndpointViewChanged() {
13: return saInEndpointViewChanged;
14: }
15:
16: public void setSaInEndpointViewChanged(
17: boolean saInEndpointViewChanged) {
18: this .saInEndpointViewChanged = saInEndpointViewChanged;
19: }
20:
21: public String getSaInEndpointView() {
22: return saInEndpointView;
23: }
24:
25: public void setSaInEndpointView(String saInEndpointView) {
26: this.saInEndpointView = saInEndpointView;
27: }
28:
29: }
|