* Fixed for bug [1619933] and [1619933], now it is possible to run adempiere client with only a single connection to the application server.

This commit is contained in:
Heng Sin Low 2007-01-07 07:38:17 +00:00
parent 1acefd9871
commit b6994ea3a3
2 changed files with 26 additions and 0 deletions

View File

@ -159,4 +159,18 @@ public interface Server
public java.lang.String getStatus( )
throws java.rmi.RemoteException;
/**
* Commit the named transaction on server
* @param trxName
* @return true if success, false otherwise */
public boolean commit( java.lang.String trxName )
throws java.rmi.RemoteException;
/**
* Rollback the named transaction on server
* @param trxName
* @return true if success, false otherwise */
public boolean rollback( java.lang.String trxName )
throws java.rmi.RemoteException;
}

View File

@ -142,4 +142,16 @@ public interface ServerLocal
* @return Debugging information about the instance and its content */
public java.lang.String getStatus( ) ;
/**
* Commit the named transaction on server
* @param trxName
* @return true if success, false otherwise */
public boolean commit( java.lang.String trxName ) ;
/**
* Rollback the named transaction on server
* @param trxName
* @return true if success, false otherwise */
public boolean rollback( java.lang.String trxName ) ;
}