PasswordAuthentication.h 794 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_net_PasswordAuthentication__
  3. #define __java_net_PasswordAuthentication__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. #include <gcj/array.h>
  7. extern "Java"
  8. {
  9. namespace java
  10. {
  11. namespace net
  12. {
  13. class PasswordAuthentication;
  14. }
  15. }
  16. }
  17. class java::net::PasswordAuthentication : public ::java::lang::Object
  18. {
  19. public:
  20. PasswordAuthentication(::java::lang::String *, JArray< jchar > *);
  21. ::java::lang::String * getUserName();
  22. JArray< jchar > * getPassword();
  23. private:
  24. ::java::lang::String * __attribute__((aligned(__alignof__( ::java::lang::Object)))) username;
  25. JArray< jchar > * password;
  26. public:
  27. static ::java::lang::Class class$;
  28. };
  29. #endif // __java_net_PasswordAuthentication__