/*
* Created on Aug 27, 2004
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package net.reliableresponse.notification.broker.impl.mckoisql;
import java.sql.Connection;
import net.reliableresponse.notification.broker.BrokerFactory;
import net.reliableresponse.notification.broker.impl.sql.GenericSQLAuthorizationBroker;
/**
* @author drig
*
* Copyright 2004 - David Rudder
*/
public class MckoiSQLAuthorizationBroker extends GenericSQLAuthorizationBroker {
/* (non-Javadoc)
* @see net.reliableresponse.notification.broker.impl.sql.GenericSQLAuthorizationBroker#getConnection()
*/
public Connection getConnection() {
return BrokerFactory.getDatabaseBroker().getConnection();
}
}