Package javango.tests

Source Code of javango.tests.Views

package javango.tests;

import java.util.HashMap;

import javango.contrib.freemarker.FreemarkerResponse;
import javango.http.HttpRequest;
import javango.http.HttpResponse;

public class Views {

  public static HttpResponse index(HttpRequest request) {
    return new FreemarkerResponse("javango/tests/ftl/index.ftl", new HashMap<String, Object>());
  }
   
}
TOP

Related Classes of javango.tests.Views

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.