示例#1
0
  /**
   * Constructor for the current session. The current system time will be used as the session ID.
   *
   * @param sessionId
   */
  public Session(Model model) {
    super(ROOT);

    // add session variable here
    setSessionId(System.currentTimeMillis());
    setSessionName("Untitled Session");
    setSessionDesc("");

    // create default object
    this.siteTree = SiteMap.createTree(model);
    this.model = model;
  }