SystemInfoService.java

  1. package edu.ucsb.cs156.rec.services;

  2. import edu.ucsb.cs156.rec.models.SystemInfo;


  3. /**
  4.  * The SystemInfoService is a service that provides global information about
  5.  * the system and makes it available to the frontend.  For details on what
  6.  * information is provided, see the SystemInfo class.
  7.  *
  8.  * @see edu.ucsb.cs156.rec.models.SystemInfo
  9.  */
  10. public abstract class SystemInfoService {
  11.   /**
  12.    * This method returns the system information.
  13.    * @see edu.ucsb.cs156.rec.models.SystemInfo
  14.    * @return the system information
  15.    */
  16.   public abstract SystemInfo getSystemInfo();
  17. }