Signer.h 1015 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_security_Signer__
  3. #define __java_security_Signer__
  4. #pragma interface
  5. #include <java/security/Identity.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace security
  11. {
  12. class IdentityScope;
  13. class KeyPair;
  14. class PrivateKey;
  15. class Signer;
  16. }
  17. }
  18. }
  19. class java::security::Signer : public ::java::security::Identity
  20. {
  21. public: // actually protected
  22. Signer();
  23. public:
  24. Signer(::java::lang::String *);
  25. Signer(::java::lang::String *, ::java::security::IdentityScope *);
  26. virtual ::java::security::PrivateKey * getPrivateKey();
  27. virtual void setKeyPair(::java::security::KeyPair *);
  28. virtual ::java::lang::String * toString();
  29. private:
  30. static const jlong serialVersionUID = -1763464102261361480LL;
  31. ::java::security::PrivateKey * __attribute__((aligned(__alignof__( ::java::security::Identity)))) privateKey;
  32. public:
  33. static ::java::lang::Class class$;
  34. };
  35. #endif // __java_security_Signer__