source: trunk/src/gcc/libjava/javax/transaction/Status.java@ 2

Last change on this file since 2 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 856 bytes
Line 
1/* Copyright (C) 2001 Free Software Foundation
2
3 This file is part of libgcj.
4
5This software is copyrighted work licensed under the terms of the
6Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7details. */
8
9package javax.transaction;
10
11/**
12 * @author Warren Levy <[email protected]>
13 * @date May 25, 2001
14 */
15
16public abstract interface Status
17{
18 public static final int STATUS_ACTIVE = 0;
19 public static final int STATUS_MARKED_ROLLBACK = 1;
20 public static final int STATUS_PREPARED = 2;
21 public static final int STATUS_COMMITTED = 3;
22 public static final int STATUS_ROLLEDBACK = 4;
23 public static final int STATUS_UNKNOWN = 5;
24 public static final int STATUS_NO_TRANSACTION = 6;
25 public static final int STATUS_PREPARING = 7;
26 public static final int STATUS_COMMITTING = 8;
27 public static final int STATUS_ROLLING_BACK = 9;
28}
Note: See TracBrowser for help on using the repository browser.