com.mockrunner.mock.connector.spi.MockManagedConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockrunner-jdk1.3-j2ee1.3 Show documentation
Show all versions of mockrunner-jdk1.3-j2ee1.3 Show documentation
Mockrunner is a lightweight framework for unit testing applications
in the J2EE environment. It supports servlets, filters, tag classes
and Struts actions. It includes a JDBC a JMS and a JCA test
framework and can be used to test EJB based applications.
The newest version!
package com.mockrunner.mock.connector.spi;
import java.io.PrintWriter;
import java.util.Vector;
import javax.resource.ResourceException;
import javax.resource.spi.ConnectionEventListener;
import javax.resource.spi.ConnectionRequestInfo;
import javax.resource.spi.LocalTransaction;
import javax.resource.spi.ManagedConnection;
import javax.resource.spi.ManagedConnectionMetaData;
import javax.security.auth.Subject;
import javax.transaction.xa.XAResource;
/**
* Mock implementation of ManagedConnection
.
*/
public class MockManagedConnection implements ManagedConnection
{
private PrintWriter logWriter;
private ManagedConnectionMetaData metaData;
private Vector listeners;
public MockManagedConnection()
{
metaData = new MockManagedConnectionMetaData();
listeners = new Vector();
}
public Object getConnection(Subject subject, ConnectionRequestInfo connectionRequestInfo) throws ResourceException
{
return null;
}
public void destroy() throws ResourceException
{
}
public void cleanup() throws ResourceException
{
}
public void associateConnection(Object connection) throws ResourceException
{
}
public void addConnectionEventListener(ConnectionEventListener listener)
{
listeners.add(listener);
}
public void removeConnectionEventListener(ConnectionEventListener listener)
{
listeners.remove(listener);
}
public XAResource getXAResource() throws ResourceException
{
return null;
}
public LocalTransaction getLocalTransaction() throws ResourceException
{
return null;
}
public ManagedConnectionMetaData getMetaData() throws ResourceException
{
return metaData;
}
public PrintWriter getLogWriter() throws ResourceException
{
return logWriter;
}
public void setLogWriter(PrintWriter logWriter) throws ResourceException
{
this.logWriter = logWriter;
}
public void setMetaData(ManagedConnectionMetaData metaData)
{
this.metaData = metaData;
}
}