1 22 package org.jboss.test.cmp2.audit.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.EJBObject ; 26 27 33 public interface AuditSession 34 extends EJBObject 35 { 36 public void createAudit(String id) 37 throws RemoteException ; 38 public void updateAudit(String id, String stringValue) 39 throws RemoteException ; 40 41 public String fullAuditCheck(String id, String user, long beginTime, long endTime) 42 throws RemoteException ; 43 public String createAuditCheck(String id, String user, long beginTime, long endTime) 44 throws RemoteException ; 45 public String updateAuditCheck(String id, String user, long beginTime, long endTime) 46 throws RemoteException ; 47 48 public void createAuditChangedNames(String id) 49 throws RemoteException ; 50 public void updateAuditChangedNames(String id, String stringValue) 51 throws RemoteException ; 52 public String createAuditChangedNamesCheck(String id, String user, long beginTime, long endTime) 53 throws RemoteException ; 54 public String updateAuditChangedNamesCheck(String id, String user, long beginTime, long endTime) 55 throws RemoteException ; 56 57 public void createAuditMapped(String id) 58 throws RemoteException ; 59 public void updateAuditMapped(String id, String stringValue) 60 throws RemoteException ; 61 public void createAuditMappedChangedFields(String id, String user, long time) 62 throws RemoteException ; 63 public void updateAuditMappedChangedFields(String id, String stringValue, String user, long time) 64 throws RemoteException ; 65 public String createAuditMappedCheck(String id, String user, long beginTime, long endTime) 66 throws RemoteException ; 67 public String updateAuditMappedCheck(String id, String user, long beginTime, long endTime) 68 throws RemoteException ; 69 70 } 71 | Popular Tags |