Changeset 1877
- Timestamp:
- 05/14/09 12:05:39 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jmatter-complet/trunk/jmatter/src/com/u2d/app/HBMPersistenceMechanism.java
r981 r1877 16 16 public interface HBMPersistenceMechanism extends PersistenceMechanism 17 17 { 18 publicSession getSession();19 publicComplexEObject fetch(String query);20 publicAbstractListEO hql(String query);18 Session getSession(); 19 ComplexEObject fetch(String query); 20 AbstractListEO hql(String query); 21 21 22 publicSet<Class> getClasses();23 publicAbstractListEO hqlQuery(Query query);24 publicvoid saveMany(Set ceos);25 publicvoid deleteMany(Set ceos);26 publicvoid refresh(ComplexEObject eo);22 Set<Class> getClasses(); 23 AbstractListEO hqlQuery(Query query); 24 void saveMany(Set ceos); 25 void deleteMany(Set ceos); 26 void refresh(ComplexEObject eo); 27 27 28 publicComplexEObject lookup(Class clazz, String uniqueFieldName, String value);28 ComplexEObject lookup(Class clazz, String uniqueFieldName, String value); 29 29 30 publicvoid transaction(HBMBlock block);30 void transaction(HBMBlock block); 31 31 32 public void close(); 33 32 void close(); 34 33 }
