Status.h 911 B

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