Package controllers

Source Code of controllers.Application

package controllers;

import java.util.Date;
import java.util.List;

import models.Contact;
import play.data.validation.Valid;
import cn.bran.play.JapidController;

public class Application extends JapidController {

    public static void index() {
        Date now = new Date();
        renderJapid(now);
    }
   
    public static void list() {
        List<Contact> contacts = Contact.find("order by name, firstname").fetch();
        // for some unknown reason I cannot use "list" as the default template name
//        renderJapid(contacts);
//        render(contacts);
        // the default template would be named list.html and the derived class name seems to be conflict to the List class
        // So I chain it to another action.
        // for some unknown reason I cannot use "list" as the default template name
        // so I chain it to another one
//        dontRedirect();
//        listAll(contacts);
        renderJapidWith("@listAll", contacts);
    }
//   
//    /**
//     *  note I don't use public modifier so it won't get enhanced and I don't need call dontRedirect
//     * @param cs
//     */
//    static void listAll(List<Contact> cs) {
//      renderJapid(cs);
//    }
//   
    public static void form(Long id) {
        if(id == null) {
//            render();
          renderJapid((Object)null);
        }
        Contact contact = Contact.findById(id);
//        render(contact);
        renderJapid(contact);
    }
   
    public static void save(@Valid Contact contact) {
        if(validation.hasErrors()) {
            if(request.isAjax())
              error("Invalid value");
//            render("@form", contact);
            renderJapidWith("@form", contact);
        }
        System.out.println(contact.toString());
        contact.save();
        // redirect
        list();
    }

    public static void yahoo() {
        String a = "yahooooo!";
        renderJapid(a);
    }
}
TOP

Related Classes of controllers.Application

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.