SSLSessionBindingEvent.h 938 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __javax_net_ssl_SSLSessionBindingEvent__
  3. #define __javax_net_ssl_SSLSessionBindingEvent__
  4. #pragma interface
  5. #include <java/util/EventObject.h>
  6. extern "Java"
  7. {
  8. namespace javax
  9. {
  10. namespace net
  11. {
  12. namespace ssl
  13. {
  14. class SSLSession;
  15. class SSLSessionBindingEvent;
  16. }
  17. }
  18. }
  19. }
  20. class javax::net::ssl::SSLSessionBindingEvent : public ::java::util::EventObject
  21. {
  22. public:
  23. SSLSessionBindingEvent(::javax::net::ssl::SSLSession *, ::java::lang::String *);
  24. virtual ::java::lang::String * getName();
  25. virtual ::javax::net::ssl::SSLSession * getSession();
  26. private:
  27. static const jlong serialVersionUID = 3989172637106345LL;
  28. ::java::lang::String * __attribute__((aligned(__alignof__( ::java::util::EventObject)))) name;
  29. public:
  30. static ::java::lang::Class class$;
  31. };
  32. #endif // __javax_net_ssl_SSLSessionBindingEvent__