package org.jboss.test.jca.xads;
import java.io.PrintWriter;
import java.sql.SQLException;
import javax.sql.XAConnection;
import javax.sql.XADataSource;
public class TestXADataSource implements XADataSource
{
public int getLoginTimeout() throws SQLException
{
return 0;
}
public PrintWriter getLogWriter() throws SQLException
{
return null;
}
public XAConnection getXAConnection() throws SQLException
{
return null;
}
public XAConnection getXAConnection(String user, String password) throws SQLException
{
return null;
}
public void setLoginTimeout(int seconds) throws SQLException
{
}
public void setLogWriter(PrintWriter out) throws SQLException
{
}
}