1 21 22 package org.opensubsystems.core.logic; 23 24 import java.rmi.RemoteException ; 25 26 import org.opensubsystems.core.data.DataObject; 27 import org.opensubsystems.core.error.OSSException; 28 29 39 public interface BasicDataController extends DataController 40 { 41 50 DataObject create( 51 DataObject data 52 ) throws OSSException, 53 RemoteException ; 54 55 68 void delete( 69 int iId 70 ) throws OSSException, 71 RemoteException ; 72 } 73 | Popular Tags |