Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/msgIOAuth2Module.idl
*/
#ifndef __gen_msgIOAuth2Module_h__
#define __gen_msgIOAuth2Module_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIMsgIncomingServer; /* forward declaration */
class nsISmtpServer; /* forward declaration */
/* starting interface: msgIOAuth2ModuleListener */
#define MSGIOAUTH2MODULELISTENER_IID_STR "9a088b49-bc13-4f99-9478-053a6a43e370"
#define MSGIOAUTH2MODULELISTENER_IID \
{0x9a088b49, 0xbc13, 0x4f99, \
{ 0x94, 0x78, 0x05, 0x3a, 0x6a, 0x43, 0xe3, 0x70 }}
class NS_NO_VTABLE msgIOAuth2ModuleListener : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(MSGIOAUTH2MODULELISTENER_IID)
/* void onSuccess (in ACString aBearerToken); */
NS_IMETHOD OnSuccess(const nsACString & aBearerToken) = 0;
/* void onFailure (in nsresult aError); */
NS_IMETHOD OnFailure(nsresult aError) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(msgIOAuth2ModuleListener, MSGIOAUTH2MODULELISTENER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MSGIOAUTH2MODULELISTENER \
NS_IMETHOD OnSuccess(const nsACString & aBearerToken) override; \
NS_IMETHOD OnFailure(nsresult aError) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_MSGIOAUTH2MODULELISTENER \
NS_METHOD OnSuccess(const nsACString & aBearerToken); \
NS_METHOD OnFailure(nsresult aError);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MSGIOAUTH2MODULELISTENER(_to) \
NS_IMETHOD OnSuccess(const nsACString & aBearerToken) override { return _to OnSuccess(aBearerToken); } \
NS_IMETHOD OnFailure(nsresult aError) override { return _to OnFailure(aError); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MSGIOAUTH2MODULELISTENER(_to) \
NS_IMETHOD OnSuccess(const nsACString & aBearerToken) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnSuccess(aBearerToken); } \
NS_IMETHOD OnFailure(nsresult aError) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnFailure(aError); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public msgIOAuth2ModuleListener
{
public:
NS_DECL_ISUPPORTS
NS_DECL_MSGIOAUTH2MODULELISTENER
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, msgIOAuth2ModuleListener)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* void onSuccess (in ACString aBearerToken); */
NS_IMETHODIMP _MYCLASS_::OnSuccess(const nsACString & aBearerToken)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onFailure (in nsresult aError); */
NS_IMETHODIMP _MYCLASS_::OnFailure(nsresult aError)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: msgIOAuth2Module */
#define MSGIOAUTH2MODULE_IID_STR "68c275f8-cfa7-4622-b279-af290616cae6"
#define MSGIOAUTH2MODULE_IID \
{0x68c275f8, 0xcfa7, 0x4622, \
{ 0xb2, 0x79, 0xaf, 0x29, 0x06, 0x16, 0xca, 0xe6 }}
class NS_NO_VTABLE msgIOAuth2Module : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(MSGIOAUTH2MODULE_IID)
/* bool initFromSmtp (in nsISmtpServer aSmtpServer); */
NS_IMETHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval) = 0;
/* bool initFromMail (in nsIMsgIncomingServer aServer); */
NS_IMETHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval) = 0;
/* void connect (in boolean aWithUI, in msgIOAuth2ModuleListener aCallback); */
NS_IMETHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback) = 0;
/* ACString buildXOAuth2String (); */
NS_IMETHOD BuildXOAuth2String(nsACString & _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(msgIOAuth2Module, MSGIOAUTH2MODULE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MSGIOAUTH2MODULE \
NS_IMETHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval) override; \
NS_IMETHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval) override; \
NS_IMETHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback) override; \
NS_IMETHOD BuildXOAuth2String(nsACString & _retval) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_MSGIOAUTH2MODULE \
NS_METHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval); \
NS_METHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval); \
NS_METHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback); \
NS_METHOD BuildXOAuth2String(nsACString & _retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MSGIOAUTH2MODULE(_to) \
NS_IMETHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval) override { return _to InitFromSmtp(aSmtpServer, _retval); } \
NS_IMETHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval) override { return _to InitFromMail(aServer, _retval); } \
NS_IMETHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback) override { return _to Connect(aWithUI, aCallback); } \
NS_IMETHOD BuildXOAuth2String(nsACString & _retval) override { return _to BuildXOAuth2String(_retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MSGIOAUTH2MODULE(_to) \
NS_IMETHOD InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InitFromSmtp(aSmtpServer, _retval); } \
NS_IMETHOD InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InitFromMail(aServer, _retval); } \
NS_IMETHOD Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Connect(aWithUI, aCallback); } \
NS_IMETHOD BuildXOAuth2String(nsACString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->BuildXOAuth2String(_retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public msgIOAuth2Module
{
public:
NS_DECL_ISUPPORTS
NS_DECL_MSGIOAUTH2MODULE
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, msgIOAuth2Module)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* bool initFromSmtp (in nsISmtpServer aSmtpServer); */
NS_IMETHODIMP _MYCLASS_::InitFromSmtp(nsISmtpServer *aSmtpServer, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* bool initFromMail (in nsIMsgIncomingServer aServer); */
NS_IMETHODIMP _MYCLASS_::InitFromMail(nsIMsgIncomingServer *aServer, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void connect (in boolean aWithUI, in msgIOAuth2ModuleListener aCallback); */
NS_IMETHODIMP _MYCLASS_::Connect(bool aWithUI, msgIOAuth2ModuleListener *aCallback)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* ACString buildXOAuth2String (); */
NS_IMETHODIMP _MYCLASS_::BuildXOAuth2String(nsACString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#define MSGIOAUTH2MODULE_CONTRACTID "@mozilla.org/mail/oauth2-module;1"
#endif /* __gen_msgIOAuth2Module_h__ */