001/******************************************************************************* 002 * Copyright (c) 2006-2013 Nuxeo SA (http://nuxeo.com/) and others. 003 * 004 * All rights reserved. This program and the accompanying materials 005 * are made available under the terms of the Eclipse Public License v1.0 006 * which accompanies this distribution, and is available at 007 * http://www.eclipse.org/legal/epl-v10.html 008 *******************************************************************************/ 009package org.nuxeo.runtime.jtajca; 010 011import org.apache.geronimo.connector.outbound.AbstractConnectionManager; 012 013public interface NuxeoContainerListener { 014 015 void handleNewConnectionManager(String name, AbstractConnectionManager mgr); 016 017 void handleConnectionManagerReset(String name, AbstractConnectionManager mgr); 018 019 void handleConnectionManagerDispose(String name, AbstractConnectionManager mgr); 020}