DSAPublicKey.h 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_security_interfaces_DSAPublicKey__
  3. #define __java_security_interfaces_DSAPublicKey__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. #include <gcj/array.h>
  7. extern "Java"
  8. {
  9. namespace java
  10. {
  11. namespace math
  12. {
  13. class BigInteger;
  14. }
  15. namespace security
  16. {
  17. namespace interfaces
  18. {
  19. class DSAParams;
  20. class DSAPublicKey;
  21. }
  22. }
  23. }
  24. }
  25. class java::security::interfaces::DSAPublicKey : public ::java::lang::Object
  26. {
  27. public:
  28. virtual ::java::math::BigInteger * getY() = 0;
  29. virtual ::java::security::interfaces::DSAParams * getParams() = 0;
  30. virtual ::java::lang::String * getAlgorithm() = 0;
  31. virtual ::java::lang::String * getFormat() = 0;
  32. virtual JArray< jbyte > * getEncoded() = 0;
  33. static const jlong serialVersionUID = 1234526332779022332LL;
  34. static ::java::lang::Class class$;
  35. } __attribute__ ((java_interface));
  36. #endif // __java_security_interfaces_DSAPublicKey__