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