01: package net.sf.mockcreator;
02:
03: import java.io.Externalizable;
04: import java.io.IOException;
05: import java.io.Serializable;
06: import java.sql.BatchUpdateException;
07: import java.sql.SQLException;
08:
09: import javax.sql.rowset.serial.SerialException;
10:
11: public class Java15LarouchePhilippeClass<ENTITY extends Externalizable, ENTITY_ID extends Serializable>
12: implements
13: Java15LarouchePhilippe<ENTITY, ENTITY_ID, BatchUpdateException, SerialException> {
14:
15: public ENTITY create(byte[] clientSessionGuid, ENTITY entity)
16: throws IOException, BatchUpdateException, SQLException,
17: SerialException {
18: return null;
19: }
20:
21: public ENTITY update(byte[] clientSessionGuid, ENTITY entity)
22: throws IOException, BatchUpdateException, SQLException,
23: SerialException {
24: return null;
25: }
26:
27: public void delete(byte[] clientSessionGuid, ENTITY_ID id)
28: throws IOException, SerialException, SQLException {
29: }
30:
31: public ENTITY getById(byte[] clientSessionGuid, ENTITY_ID id)
32: throws IOException, SQLException {
33: return null;
34: }
35: }
|