summaryrefslogtreecommitdiff
path: root/libjava/javax/security/auth/kerberos/KerberosKey.h
blob: ed0e93f29100f1a477b2fa76d86d68c8c413b3d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __javax_security_auth_kerberos_KerberosKey__
#define __javax_security_auth_kerberos_KerberosKey__

#pragma interface

#include <java/lang/Object.h>
#include <gcj/array.h>

extern "Java"
{
  namespace javax
  {
    namespace security
    {
      namespace auth
      {
        namespace kerberos
        {
            class KerberosKey;
            class KerberosPrincipal;
            class KeyImpl;
        }
      }
    }
  }
}

class javax::security::auth::kerberos::KerberosKey : public ::java::lang::Object
{

public:
  KerberosKey(::javax::security::auth::kerberos::KerberosPrincipal *, JArray< jbyte > *, jint, jint);
  KerberosKey(::javax::security::auth::kerberos::KerberosPrincipal *, JArray< jchar > *, ::java::lang::String *);
  virtual ::java::lang::String * getAlgorithm();
  virtual ::java::lang::String * getFormat();
  virtual ::javax::security::auth::kerberos::KerberosPrincipal * getPrincipal();
  virtual jint getKeyType();
  virtual jint getVersionNumber();
  virtual JArray< jbyte > * getEncoded();
  virtual void destroy();
  virtual jboolean isDestroyed();
private:
  void checkDestroyed();
public:
  virtual ::java::lang::String * toString();
private:
  static const jlong serialVersionUID = -4625402278148246993LL;
  ::javax::security::auth::kerberos::KerberosPrincipal * __attribute__((aligned(__alignof__( ::java::lang::Object)))) principal;
  jint versionNum;
  ::javax::security::auth::kerberos::KeyImpl * key;
public:
  static ::java::lang::Class class$;
};

#endif // __javax_security_auth_kerberos_KerberosKey__