| org.xmldb.api.modules.TransactionService
TransactionService | public interface TransactionService extends Service(Code) | | Provides the ability to bundle Collection operations into a
transaction.
Note: This interface needs much better definition
|
begin | void begin() throws XMLDBException(Code) | | Begin the transaction
exception: XMLDBException - with expected error codes.
ErrorCodes.VENDOR_ERROR for any vendorspecific errors that occur. |
commit | void commit() throws XMLDBException(Code) | | Commit the transaction
exception: XMLDBException - with expected error codes.
ErrorCodes.VENDOR_ERROR for any vendorspecific errors that occur.
|
rollback | void rollback() throws XMLDBException(Code) | | Rollback the transaction
exception: XMLDBException - with expected error codes.
ErrorCodes.VENDOR_ERROR for any vendorspecific errors that occur.
|
|
|