Package org.apache.cocoon.samples.castor

Source Code of org.apache.cocoon.samples.castor.TestBeanAction

/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cocoon.samples.castor;

import org.apache.avalon.framework.parameters.Parameters;

import org.apache.cocoon.acting.AbstractAction;
import org.apache.cocoon.environment.Context;
import org.apache.cocoon.environment.ObjectModelHelper;
import org.apache.cocoon.environment.Redirector;
import org.apache.cocoon.environment.Request;
import org.apache.cocoon.environment.Session;
import org.apache.cocoon.environment.SourceResolver;

import java.util.Map;

/**
*
* @version CVS $Id: TestBeanAction.java 57433 2004-11-11 14:36:01Z vgritsenko $
*/
public class TestBeanAction extends AbstractAction {

    public TestBeanAction() {
    }

    public Map act(Redirector redirector, SourceResolver resolver, Map objectModel, String src, Parameters param)
    throws Exception {
        Request request = ObjectModelHelper.getRequest(objectModel);
        Context context = ObjectModelHelper.getContext(objectModel);
        if (context != null) {
            context.setAttribute("Wale",new  TestBean("Wale in the big sea", "context"));
        }

        Session session =request.getSession(true);
        session.setAttribute("Mouse",new  TestBean("Liveing in the session","session"));
        objectModel.put("Lion", new TestBean("Lion:walking on the sitemap","sitemap") );
        request.setAttribute("Hamster",new TestBean("Hamster:Wer hat nach mir gefragt","request")  );
        session.setAttribute("Elefant",new  TestBean("Elefant:from Africa","session"));
        request.setAttribute("Elefant",new  TestBean("Elefant:from India","request"));

        return objectModel;
    }
}
TOP

Related Classes of org.apache.cocoon.samples.castor.TestBeanAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.