1 /* 2 * Copyright 2007 The Kuali Foundation Licensed under the Educational Community 3 * License, Version 1.0 (the "License"); you may not use this file except in 4 * compliance with the License. You may obtain a copy of the License at 5 * http://www.opensource.org/licenses/ecl1.php Unless required by applicable law 6 * or agreed to in writing, software distributed under the License is 7 * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 8 * KIND, either express or implied. See the License for the specific language 9 * governing permissions and limitations under the License. 10 */ 11 package org.kuali.rice.krad.uif.widget; 12 13 import java.util.HashMap; 14 15 import org.apache.commons.lang.StringUtils; 16 17 /** 18 * Used for rendering a lightbox in the UI to display the result of a submit in 19 * a light box. This is used for the quickfinder lookup. 20 * 21 * @author Kuali Rice Team (rice.collab@kuali.org) 22 */ 23 public class LightBoxLookup extends WidgetBase { 24 private static final long serialVersionUID = -8571541274489677888L; 25 26 private String actionParameterMapString; 27 28 public LightBoxLookup() { 29 super(); 30 } 31 32 /** 33 * Setter for the action parameter map javascript string 34 * 35 * @param the 36 * action parameter map javascript string 37 */ 38 public void setActionParameterMapString(String actionParameterMapString) { 39 this.actionParameterMapString = actionParameterMapString; 40 } 41 42 /** 43 * Action parameter map javascript string 44 * <p> 45 * The action parameter map string will be used to write these parameters to 46 * the form. 47 * </p> 48 * 49 * @return the action parameter map javascript string 50 */ 51 public String getActionParameterMapString() { 52 return actionParameterMapString; 53 } 54 55 }