Package projectatlast.student

Examples of projectatlast.student.Student


  @Override
  public void doGet(HttpServletRequest req, HttpServletResponse resp)
      throws IOException {
    resp.setContentType("text/plain");
   
    Student student = AuthController.getCurrentStudent();
   
    Objectify ofy = Registry.dao().ofy();
    resp.getWriter().println("Cleaning activities...");
    QueryResultIterable<Key<Activity>> activities = ofy.query(Activity.class).filter("student =", student).fetchKeys();
    ofy.delete(activities);
View Full Code Here


    resp.getWriter().println("bla");
    Date now = new Date();
    Date tomorrow = new Date(now.getTime() + 86400000);

    Student student = AuthController.getCurrentStudent();

    // TEST QUERY

    Query query = new Query();
    Date from = new Date();
View Full Code Here

TOP

Related Classes of projectatlast.student.Student

Copyright © 2018 www.massapicom. 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.