package caltool.admin;

import mvp.*;
import java.util.*;

/****
 *
 * Class UserDB is the repository of registered user information.  It is a
 * collection of UserRecords.
 *
 */

public class UserDB extends Model {

    /*-*
     * Derived data field
     */

    /** The collection data representation is abstract for now */
    protected Collection data;

}