Subversion Repositories SmartDukaan

Rev

Rev 32978 | Rev 33245 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32978 Rev 33225
Line 15... Line 15...
15
 
15
 
16
@Repository
16
@Repository
17
public interface GenericRepository {
17
public interface GenericRepository {
18
    public final String IS_NULL = "IS_NULL";
18
    public final String IS_NULL = "IS_NULL";
19
    public final String IS_NOT_NULL = "IS_NOT_NULL";
19
    public final String IS_NOT_NULL = "IS_NOT_NULL";
-
 
20
    public final String OR_MAP = "OR_MAP";
20
 
21
 
21
    public <T> void persist(Object object);
22
    public <T> void persist(Object object);
22
 
23
 
23
    public <T> void delete(Object object);
24
    public <T> void delete(Object object);
24
 
25