Concrete implementation of {@link UserDatabase} for an in-memorydatabase backed by an XML data file.
131132133134135136137138139140141
// Remember our associated configuration and servlet this.servlet = servlet; // Construct a new database and make it available database = new MemoryUserDatabase(); try { String path = calculatePath(); if (log.isDebugEnabled()) { log.debug(" Loading database from '" + path + "'"); }
128129130131132133134135136137138
165166167168169170171172173174175
// Remember our associated ServletContext this.context = event.getServletContext(); // Construct a new database and make it available database = new MemoryUserDatabase(); try { String path = calculatePath(); if (log.isDebugEnabled()) { log.debug(" Loading database from '" + path + "'"); }
171172173174175176177178179180181
162163164165166167168169170171172
154155156157158159160161162163164