Package org.fluxtream.core.mvc.models

Examples of org.fluxtream.core.mvc.models.TimeBoundariesModel


  /**
   * This is to let the client discard responses that are coming "too late"
   *
   */
  TimeBoundariesModel getStartEndResponseBoundaries(AbstractTimespanMetadata dayMetadata) {
    TimeBoundariesModel tb = new TimeBoundariesModel();
    tb.start = dayMetadata.start;
    tb.end = dayMetadata.end;
    return tb;
  }
View Full Code Here

TOP

Related Classes of org.fluxtream.core.mvc.models.TimeBoundariesModel

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.