JDBCInitCommand.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.ejb.plugins.cmp.jdbc; /** * JDBCInitCommand does nothing. * * @author <a href="mailto:dain@daingroup.com">Dain Sundstrom</a> * @author <a href="mailto:rickard.oberg@telkel.com">Rickard Öberg</a> * @author <a href="mailto:marc.fleury@telkel.com">Marc Fleury</a> * @author <a href="mailto:shevlandj@kpi.com.au">Joe Shevland</a> * @author <a href="mailto:justin@j-m-f.demon.co.uk">Justin Forder</a> * @author <a href="mailto:michel.anke@wolmail.nl">Michel de Groot</a> * @version $Revision: 1.9 $ */ public final class JDBCInitCommand { public JDBCInitCommand(JDBCStoreManager manager) { } public void execute() { } }
JDBCInitCommand.java |