1 /** 2 * Copyright (C) 2003-2004 3 * - France Telecom R&D 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Lesser General Public 7 * License as published by the Free Software Foundation; either 8 * version 2 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with this library; if not, write to the Free Software 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * 19 * Release: 1.0 20 * 21 * Authors: Olivier Lobry (olivier.lobry@rd.francetelecom.com) 22 * 23 */ 24 25 package org.objectweb.perseus; 26 27 import org.objectweb.perseus.persistence.api.ConnectionHolder; 28 import org.objectweb.perseus.persistence.api.PersistenceException; 29 import org.objectweb.perseus.persistence.api.WorkingSet; 30 31 public class ConnectionHolderTestImpl implements ConnectionHolder { 32 public Object getCHConnectionForRead() throws PersistenceException { 33 return this; 34 } 35 36 public Object getCHConnectionForWrite() throws PersistenceException { 37 return this; 38 } 39 40 public void begin() throws PersistenceException { 41 } 42 43 public void commitCH() throws PersistenceException { 44 } 45 46 public void rollbackCH() throws PersistenceException { 47 } 48 49 public void releaseCHConnection() { 50 } 51 52 public void closeCHConnection() throws PersistenceException { 53 } 54 55 public void bindWorkingSet(WorkingSet ws) { 56 } 57 58 public WorkingSet getWorkingSet() { 59 return null; 60 } 61 } 62