1 /**
2 * Copyright 2005-2012 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.rice.krad.uif.widget;
17
18 import java.util.HashMap;
19
20 import org.apache.commons.lang.StringUtils;
21
22 /**
23 * Used for rendering a lightbox in the UI to display the result of a submit in
24 * a light box. This is used for the quickfinder lookup.
25 *
26 * @author Kuali Rice Team (rice.collab@kuali.org)
27 */
28 public class LightBoxLookup extends WidgetBase {
29 private static final long serialVersionUID = -8571541274489677888L;
30
31 private String actionParameterMapString;
32
33 public LightBoxLookup() {
34 super();
35 }
36
37 /**
38 * Setter for the action parameter map javascript string
39 *
40 * @param the
41 * action parameter map javascript string
42 */
43 public void setActionParameterMapString(String actionParameterMapString) {
44 this.actionParameterMapString = actionParameterMapString;
45 }
46
47 /**
48 * Action parameter map javascript string
49 * <p>
50 * The action parameter map string will be used to write these parameters to
51 * the form.
52 * </p>
53 *
54 * @return the action parameter map javascript string
55 */
56 public String getActionParameterMapString() {
57 return actionParameterMapString;
58 }
59
60 }