KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Made > TIR > WorkRepository


1 /* $Id: WorkRepository.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */
2 package SOFA.SOFAnode.Made.TIR;
3 import java.rmi.RemoteException JavaDoc;
4
5 /** Interface for "work" repository. You can call create_* methods on it */
6 public interface WorkRepository extends Container, Repository {
7   /** Returns id of this work repository */
8   public String JavaDoc workIdent() throws RemoteException JavaDoc;
9   /** Commiting changes */
10   public boolean commit() throws RemoteException JavaDoc, TIRExceptCommit;
11   /** Aborting changes */
12   public boolean abort() throws RemoteException JavaDoc;
13   /** Returns actual profile */
14   public ProfileDef profile() throws RemoteException JavaDoc;
15 }
16
Popular Tags