01: /**
02: * Copyright (C) 2001-2005 France Telecom R&D
03: */package org.objectweb.speedo.pm.jdo.api;
04:
05: import javax.jdo.PersistenceManagerFactory;
06: import javax.jdo.datastore.DataStoreCache;
07:
08: import org.objectweb.speedo.pm.api.POManagerFactoryItf;
09:
10: /**
11: * Is a specialization of the generic POManagerFactoryItf dedicated for the
12: * JDO API.
13: *
14: * @author S.Chassande-Barrioz
15: */
16: public interface JDOPOManagerFactoryItf extends POManagerFactoryItf,
17: PersistenceManagerFactory, DataStoreCache {
18:
19: }
|