* 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:
parent
1acefd9871
commit
b6994ea3a3
|
@ -159,4 +159,18 @@ public interface Server
|
||||||
public java.lang.String getStatus( )
|
public java.lang.String getStatus( )
|
||||||
throws java.rmi.RemoteException;
|
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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -142,4 +142,16 @@ public interface ServerLocal
|
||||||
* @return Debugging information about the instance and its content */
|
* @return Debugging information about the instance and its content */
|
||||||
public java.lang.String getStatus( ) ;
|
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 ) ;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue