Package acme.dataapp

Examples of acme.dataapp.MOTD


        }
        res.put("result", "loggedout");

      } else if (path.contains("/api/messageofday/")) {
        // Returns the message of the day for Acme Airlines
        MOTD motd = MOTD.getInstance();
        res = motd.getRandomMessageOfTheDay();
       
      } else if (path.contains("/api/fc/all")) {
        FlightController fc = FlightController.getInstance();
        res = fc.getAllFlightStatus();
       
View Full Code Here

TOP

Related Classes of acme.dataapp.MOTD

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.