1 27 28 package org.objectweb.perseus.connector.ra; 29 30 import javax.resource.cci.Connection ; 31 32 40 public interface Writing { 41 42 void init(Connection c) throws Exception ; 43 44 void init() throws Exception ; 45 46 52 boolean read(Connection c, boolean isWritten) throws Exception ; 53 54 boolean read(boolean isWritten) throws Exception ; 55 56 60 void write(Connection c) throws Exception ; 61 62 void write() throws Exception ; 63 64 void setConnection(Connection c) throws Exception ; 65 } 66 | Popular Tags |