Package com.appspot.plucial.controller

Source Code of com.appspot.plucial.controller.IndexController

package com.appspot.plucial.controller;

import org.slim3.controller.Navigation;

import com.appspot.plucial.model.UserModel;
import com.appspot.plucial.service.UserService;

public class IndexController extends BaseController {

    @Override
    protected Navigation execute() throws Exception {

        UserModel userModel = sessionScope("userModel");
        if(userModel != null) {
            return redirect("/u/" + userModel.getKey().getName() + "/");
        }


        requestScope("serviceUserCount", String.valueOf(UserService.getUserCount()));
//        requestScope("exampleUserList", UserService.getExampleUserList());

        return forward("/index.jsp");
    }
}
TOP

Related Classes of com.appspot.plucial.controller.IndexController

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.