blob: 4fd94ac3806432c175f9756d7ae2b9e28cc9fd14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __javax_transaction_Status__
#define __javax_transaction_Status__
#pragma interface
#include <java/lang/Object.h>
extern "Java"
{
namespace javax
{
namespace transaction
{
class Status;
}
}
}
class javax::transaction::Status : public ::java::lang::Object
{
public:
static const jint STATUS_ACTIVE = 0;
static const jint STATUS_MARKED_ROLLBACK = 1;
static const jint STATUS_PREPARED = 2;
static const jint STATUS_COMMITTED = 3;
static const jint STATUS_ROLLEDBACK = 4;
static const jint STATUS_UNKNOWN = 5;
static const jint STATUS_NO_TRANSACTION = 6;
static const jint STATUS_PREPARING = 7;
static const jint STATUS_COMMITTING = 8;
static const jint STATUS_ROLLING_BACK = 9;
static ::java::lang::Class class$;
} __attribute__ ((java_interface));
#endif // __javax_transaction_Status__
|