~ubuntu-branches/ubuntu/lucid/libstruts1.2-java/lucid

« back to all changes in this revision

Viewing changes to contrib/struts-el/target/exercise-taglib/WEB-INF/src/org/apache/struts/webapp/exercise/DynaSetAction.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-04-24 12:14:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424121423-naev53qigqgks0sa
Tags: 1.2.9-1
New upstream  release Fixes  three security  problems: CVE-2006-1546,
CVE-2006-1547,  CVE-2006-1548  (closes:  #360551),  thanks  to  Moritz
Muehlenhoff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * $Header: /home/cvs/jakarta-struts/contrib/struts-el/src/exercise-taglib/org/apache/struts/webapp/exercise/DynaSetAction.java,v 1.2 2004/03/14 07:15:06 sraeburn Exp $
3
 
 * $Revision: 1.2 $
4
 
 * $Date: 2004/03/14 07:15:06 $
5
 
 *
6
 
 * Copyright 1999-2004 The Apache Software Foundation.
7
 
 * 
8
 
 * Licensed under the Apache License, Version 2.0 (the "License");
9
 
 * you may not use this file except in compliance with the License.
10
 
 * You may obtain a copy of the License at
11
 
 * 
12
 
 *      http://www.apache.org/licenses/LICENSE-2.0
13
 
 * 
14
 
 * Unless required by applicable law or agreed to in writing, software
15
 
 * distributed under the License is distributed on an "AS IS" BASIS,
16
 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
 
 * See the License for the specific language governing permissions and
18
 
 * limitations under the License.
19
 
 */
20
 
 
21
 
package org.apache.struts.webapp.exercise;
22
 
 
23
 
import javax.servlet.http.HttpServletRequest;
24
 
import javax.servlet.http.HttpServletResponse;
25
 
import org.apache.struts.action.Action;
26
 
import org.apache.struts.action.ActionForm;
27
 
import org.apache.struts.action.ActionForward;
28
 
import org.apache.struts.action.ActionMapping;
29
 
import org.apache.struts.action.DynaActionForm;
30
 
 
31
 
public class DynaSetAction extends Action
32
 
{
33
 
    public ActionForward execute(ActionMapping mapping,
34
 
                                 ActionForm form,
35
 
                                 HttpServletRequest request,
36
 
                                 HttpServletResponse response)
37
 
        throws Exception {
38
 
 
39
 
        DynaActionForm dynaActionForm = (DynaActionForm) form;
40
 
 
41
 
        dynaActionForm.set("foo", "alpha");
42
 
        dynaActionForm.set("bar", "beta");
43
 
 
44
 
        return (mapping.findForward("success"));
45
 
    }
46
 
}