public class WMSRenderingAction extends ConfigAction {
public ActionForward execute(ActionMapping mapping, ActionForm form,
UserContainer user, HttpServletRequest request, HttpServletResponse response
) throws IOException, ServletException {
WMSConfig config = getWMSConfig();
WMSRenderingForm renderingForm = (WMSRenderingForm) form;
boolean svgAntiAlias = renderingForm.getSvgAntiAlias();
if (renderingForm.isSvgAntiAliasChecked() == false) {
svgAntiAlias = false;
}
config.setSvgRenderer(renderingForm.getSvgRenderer());
config.setSvgAntiAlias(svgAntiAlias);
getApplicationState().notifyConfigChanged();
return mapping.findForward("config");
}