WrappedStatement.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.ejb.plugins.cmp.jdbc; import java.sql.Statement; /** * A nice simple interface that allow us to get the original statement * back from the wrapper. */ public interface WrappedStatement { public Statement getUnderlyingStatement(); }
WrappedStatement.java |