Package controllers

Source Code of controllers.Application

package controllers;

import models.ToDo;
import org.codehaus.jackson.JsonNode;
import play.libs.Json;
import play.mvc.BodyParser;
import play.mvc.Controller;
import play.mvc.Result;
import views.html.index;

import java.util.List;

public class Application extends Controller
{
    public static Result index()
    {
        return ok(index.render());
    }

    public static Result getAll()
    {
        List<ToDo> toDos = ToDo.findAll();
        return ok(Json.toJson(toDos));
    }

    @BodyParser.Of(BodyParser.Json.class)
    public static Result create()
    {
        JsonNode json = request().body().asJson();
        ToDo incoming = Json.fromJson(json, ToDo.class);

        incoming.save();

        return ok(Json.toJson(incoming));
    }

    @BodyParser.Of(BodyParser.Json.class)
    public static Result update(Long id)
    {
        // the ID parameter isn't used here, since it's already in the JSON body
        // PUTs should have an identifier, you could use it to confirm against the model you're sending, etc
        JsonNode json = request().body().asJson();
        ToDo incoming = Json.fromJson(json, ToDo.class);

        incoming.update();

        return ok(Json.toJson(incoming));
    }

    public static Result delete(Long id)
    {
        ToDo toDo = ToDo.findById(id);
        if (toDo != null)
        {
            toDo.delete();
        }
        return noContent();
    }
}
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.