1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.module.purap.web.struts;
17
18 import org.kuali.rice.kns.web.struts.form.KualiForm;
19 import org.kuali.rice.krad.util.KRADConstants;
20
21 import javax.servlet.http.HttpServletRequest;
22
23
24
25
26 public class B2BForm extends KualiForm {
27 private String shopUrl;
28
29 public String getShopUrl() {
30 return shopUrl;
31 }
32
33 public void setShopUrl(String shopUrl) {
34 this.shopUrl = shopUrl;
35 }
36
37
38
39
40 @Override
41 public boolean shouldMethodToCallParameterBeUsed(String methodToCallParameterName, String methodToCallParameterValue, HttpServletRequest request) {
42 if (KRADConstants.DISPATCH_REQUEST_PARAMETER.equals(methodToCallParameterName) &&
43 ("shopCatalogs".equals(methodToCallParameterValue) || "returnFromShopping".equals(methodToCallParameterValue))) {
44 return true;
45 }
46 return super.shouldMethodToCallParameterBeUsed(methodToCallParameterName, methodToCallParameterValue, request);
47 }
48
49 }