|
|
@@ -17,6 +17,7 @@ public class WebParams implements Serializable {
|
|
|
private boolean needJsInteract = true;
|
|
|
private boolean showTitle = true;
|
|
|
private boolean forResult = false;
|
|
|
+ private boolean refreshClick = false;
|
|
|
private int action;
|
|
|
private String tokenKey = "authorization";
|
|
|
private String invitationCodeKey = "invitation_code";
|
|
|
@@ -50,6 +51,15 @@ public class WebParams implements Serializable {
|
|
|
return forResult;
|
|
|
}
|
|
|
|
|
|
+ public boolean isRefreshClick() {
|
|
|
+ return refreshClick;
|
|
|
+ }
|
|
|
+
|
|
|
+ public WebParams setRefreshClick(boolean refreshClick) {
|
|
|
+ this.refreshClick = refreshClick;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
public WebParams setForResult(boolean forResult) {
|
|
|
this.forResult = forResult;
|
|
|
return this;
|