KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > module > TransactionHandlerInterface


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.module;
11
12 import org.mmbase.util.*;
13
14 /**
15  * interface for TransactionHandler
16  *
17  * @move to org.mmbase.applications.xmlimporter.TransactionHandlerInterface
18  * @author John balder
19  * @version $Id: TransactionHandlerInterface.java,v 1.5 2003/08/29 09:36:52 pierre Exp $
20  */

21 public interface TransactionHandlerInterface {
22     
23     public void handleTransaction(String JavaDoc template, sessionInfo session, scanpage sp);
24
25 }
26
Popular Tags