Package slim3.demo.controller.upload

Source Code of slim3.demo.controller.upload.UploadController

package slim3.demo.controller.upload;

import org.slim3.controller.Controller;
import org.slim3.controller.Navigation;
import org.slim3.controller.upload.FileItem;

import slim3.demo.service.UploadService;

public class UploadController extends Controller {

    private UploadService service = new UploadService();

    @Override
    public Navigation run() {
        FileItem formFile = requestScope("formFile");
        service.upload(formFile);
        return redirect(basePath);
    }
}
TOP

Related Classes of slim3.demo.controller.upload.UploadController

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.