~ubuntu-branches/ubuntu/trusty/ehcache/trusty

« back to all changes in this revision

Viewing changes to src/main/java/net/sf/ehcache/transaction/xa/XidTransactionID.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-05-06 14:53:07 UTC
  • mfrom: (1.1.7) (2.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20130506145307-v5bhw5yu70re00l3
Tags: 2.6.7-1
* Team upload.
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 *  Copyright 2003-2010 Terracotta, Inc.
 
2
 *  Copyright Terracotta, Inc.
3
3
 *
4
4
 *  Licensed under the Apache License, Version 2.0 (the "License");
5
5
 *  you may not use this file except in compliance with the License.
33
33
    Xid getXid();
34
34
 
35
35
    /**
36
 
     * Mark this transaction ID for rollback
37
 
     */
38
 
    void markForRollback();
39
 
 
40
 
    /**
41
 
     * Check if this transaction ID has been marked for rollback
42
 
     * @return true if this ID has been marked for rollback, false otherwise
43
 
     */
44
 
    boolean isDecisionRollback();
45
 
 
 
36
     * Get the name of the associated Ehcache resource.
 
37
     *
 
38
     * @return the Ehcache resource name
 
39
     */
 
40
    String getCacheName();
46
41
}