01: /**
02: * Copyright (C) 2001-2005 France Telecom R&D
03: */package org.objectweb.speedo.mim.jdo.api;
04:
05: import org.objectweb.speedo.mim.api.PersistentObjectItf;
06:
07: import javax.jdo.spi.PersistenceCapable;
08:
09: /**
10: * Defines a JDO Persistent Object.
11: *
12: * @author S.Chassande-Barrioz
13: */
14: public interface JDOPersistentObjectItf extends PersistentObjectItf,
15: PersistenceCapable {
16:
17: }
|