1 /*
2 * Copyright 2007-2009 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
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 * Struts action form for the b2b shopping
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 * @see org.kuali.rice.kns.web.struts.form.KualiDocumentFormBase#shouldMethodToCallParameterBeUsed(java.lang.String, java.lang.String, javax.servlet.http.HttpServletRequest)
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 }