org.got5.tapestry5.jquery.services.impl.WidgetParamsImpl Maven / Gradle / Ivy
The newest version!
package org.got5.tapestry5.jquery.services.impl;
import java.util.Map;
import org.apache.tapestry5.json.JSONObject;
import org.got5.tapestry5.jquery.services.WidgetParams;
/**
* Principal Implementation of the WidgetParams Service.
*
* @since 2.6.0
*/
public class WidgetParamsImpl implements WidgetParams {
public Map widgetParams;
public WidgetParamsImpl(Map configuration){
widgetParams = configuration;
}
public JSONObject paramsForWidget(String widget){
return widgetParams.get(widget);
}
}