001/** 002 * Copyright 2005-2016 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.rice.krad.uif.widget; 017 018import java.util.HashMap; 019 020import org.apache.commons.lang.StringUtils; 021 022/** 023 * Used for rendering a lightbox in the UI to display the result of a submit in 024 * a light box. This is used for the quickfinder lookup. 025 * 026 * @author Kuali Rice Team (rice.collab@kuali.org) 027 */ 028public class LightBoxLookup extends WidgetBase { 029 private static final long serialVersionUID = -8571541274489677888L; 030 031 private String actionParameterMapString; 032 033 public LightBoxLookup() { 034 super(); 035 } 036 037 /** 038 * Setter for the action parameter map javascript string 039 * 040 * @param the 041 * action parameter map javascript string 042 */ 043 public void setActionParameterMapString(String actionParameterMapString) { 044 this.actionParameterMapString = actionParameterMapString; 045 } 046 047 /** 048 * Action parameter map javascript string 049 * <p> 050 * The action parameter map string will be used to write these parameters to 051 * the form. 052 * </p> 053 * 054 * @return the action parameter map javascript string 055 */ 056 public String getActionParameterMapString() { 057 return actionParameterMapString; 058 } 059 060}