Package org.jboss.web.tomcat.service.session.persistent

Examples of org.jboss.web.tomcat.service.session.persistent.DriverManagerPersistentStore


   @Override
   protected void setUp() throws Exception
   {
      super.setUp();
     
      testee = new DriverManagerPersistentStore();
      testee.setDriverName(org.hsqldb.jdbcDriver.class.getName());
      testee.setConnectionURL(CONNECTION_URL);
      testee.setConnectionName("sa");
      testee.setName(CONTEXT_PATH);
   }
View Full Code Here

TOP

Related Classes of org.jboss.web.tomcat.service.session.persistent.DriverManagerPersistentStore

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.