Package org.projectforge.plugins.teamcal.admin

Examples of org.projectforge.plugins.teamcal.admin.TeamCalCache


   * @return All contained calendars (visible and not visible ones).
   */
  public List<TeamCalDO> getCalendars()
  {
    final List<TeamCalDO> result = new ArrayList<TeamCalDO>();
    final TeamCalCache cache = TeamCalCache.getInstance();
    for (final TemplateCalendarProperties props : this.calendarProperties) {
      final TeamCalDO cal = cache.getCalendar(props.getCalId());
      if (cal != null) {
        result.add(cal);
      } else {
        log.error("Oups, calendar with id " + props.getCalId() + " not found in TeamCalCache.");
      }
View Full Code Here

TOP

Related Classes of org.projectforge.plugins.teamcal.admin.TeamCalCache

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.