package caltool.caldb;

import java.util.*;

/*
 *
 * UserCalendars is the list of public calendars for all registered users.  The
 * list consists of calendar file names, not calendars themselves.  In this
 * way, the list of user calendars is modeled as a distributed collection of
 * user calendar files, not as a centralized database of calendars.  This
 * allows users to retain autonomous control of their own individual calendars.
 *
 */

public abstract class UserCalendars extends AbstractList {
}