-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomResultObject.java
More file actions
57 lines (42 loc) · 1.07 KB
/
CustomResultObject.java
File metadata and controls
57 lines (42 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package Frameworkpackage;
import java.util.HashMap;
public class CustomResultObject
{
public CustomResultObject(){}
String ajaxData;
String viewName;
String messageBeforeNavigation;
HashMap<String, Object> returnObject;
boolean hasError;
public boolean disablemodaljsp;
public boolean isHasError() {
return hasError;
}
public void setHasError(boolean hasError) {
this.hasError = hasError;
}
public HashMap<String, Object> getReturnObject() {
return returnObject;
}
public void setReturnObject(HashMap<String, Object> returnObject) {
this.returnObject = returnObject;
}
public String getAjaxData() {
return ajaxData;
}
public void setAjaxData(String ajaxData) {
this.ajaxData = ajaxData;
}
public String getViewName() {
return viewName;
}
public void setViewName(String viewName) {
this.viewName = viewName;
}
public String getMessageBeforeNavigation() {
return messageBeforeNavigation;
}
public void setMessageBeforeNavigation(String messageBeforeNavigation) {
this.messageBeforeNavigation = messageBeforeNavigation;
}
}