CertPath.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_security_cert_CertPath__
  3. #define __java_security_cert_CertPath__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. #include <gcj/array.h>
  7. extern "Java"
  8. {
  9. namespace java
  10. {
  11. namespace security
  12. {
  13. namespace cert
  14. {
  15. class CertPath;
  16. }
  17. }
  18. }
  19. }
  20. class java::security::cert::CertPath : public ::java::lang::Object
  21. {
  22. public: // actually protected
  23. CertPath(::java::lang::String *);
  24. public:
  25. virtual ::java::lang::String * getType();
  26. virtual ::java::util::Iterator * getEncodings() = 0;
  27. virtual jboolean equals(::java::lang::Object *);
  28. virtual jint hashCode();
  29. virtual ::java::lang::String * toString();
  30. virtual JArray< jbyte > * getEncoded() = 0;
  31. virtual JArray< jbyte > * getEncoded(::java::lang::String *) = 0;
  32. virtual ::java::util::List * getCertificates() = 0;
  33. public: // actually protected
  34. virtual ::java::lang::Object * writeReplace();
  35. private:
  36. static const jlong serialVersionUID = 6068470306649138683LL;
  37. ::java::lang::String * __attribute__((aligned(__alignof__( ::java::lang::Object)))) type;
  38. public:
  39. static ::java::lang::Class class$;
  40. };
  41. #endif // __java_security_cert_CertPath__