Class
PurpleCredentialProvider
Description [src]
abstract class Purple.CredentialProvider : GObject.Object {
parent_instance: GObject
}
PurpleCredentialProvider
is an abstract base class for implementing support
for a specific password or keyring manager. At the time of this writing,
libpurple ships with plugins for libsecret, macOS Keychain Access, KWallet,
and the Windows Credentials store by subclassing PurpleCredentialProvider
.
Available since: | 3.0.0 |
Instance methods
purple_credential_provider_clear_password_async
Clears the password for account
from provider
.
Available since: 3.0.0
purple_credential_provider_clear_password_finish
Finishes a previous call to purple_credential_provider_clear_password_async().
Available since: 3.0.0
purple_credential_provider_get_description
Gets the description of provider
which can be displayed in user interfaces
to help users figure out which provider to use.
Available since: 3.0.0
purple_credential_provider_get_name
Gets the name of provider
which can be show in user interfaces.
Available since: 3.0.0
purple_credential_provider_get_settings
Gets the GSettings
that provider
provides.
Available since: 3.0.0
purple_credential_provider_is_valid
Checks whether or not provider
is setup correctly. This is primarily meant
for #purple_credential_provider_register_provider to call to avoid
programming errors, but can be used by anyone.
Available since: 3.0.0
purple_credential_provider_read_password_async
Reads the password for account
from provider
.
Available since: 3.0.0
purple_credential_provider_read_password_finish
Finishes a previous call to purple_credential_provider_read_password_async().
Available since: 3.0.0
purple_credential_provider_write_password_async
Writes password
for account
to provider
.
Available since: 3.0.0
purple_credential_provider_write_password_finish
Finishes a previous call to purple_credential_provider_write_password_async().
Available since: 3.0.0
Properties
Purple.CredentialProvider:description
Purple.CredentialProvider:id
Purple.CredentialProvider:name
Purple.CredentialProvider:settings
Signals
Signals inherited from GObject (1)
GObject.Object::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.
Class structure
struct PurpleCredentialProviderClass {
void (* activate) (
PurpleCredentialProvider* provider
);
void (* deactivate) (
PurpleCredentialProvider* provider
);
void (* read_password_async) (
PurpleCredentialProvider* provider,
PurpleAccount* account,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer data
);
gchar* (* read_password_finish) (
PurpleCredentialProvider* provider,
GAsyncResult* result,
GError** error
);
void (* write_password_async) (
PurpleCredentialProvider* provider,
PurpleAccount* account,
const gchar* password,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer data
);
gboolean (* write_password_finish) (
PurpleCredentialProvider* provider,
GAsyncResult* result,
GError** error
);
void (* clear_password_async) (
PurpleCredentialProvider* provider,
PurpleAccount* account,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer data
);
gboolean (* clear_password_finish) (
PurpleCredentialProvider* provider,
GAsyncResult* result,
GError** error
);
}
Class members
activate |
|
No description available. | |
deactivate |
|
No description available. | |
read_password_async |
|
No description available. | |
read_password_finish |
|
No description available. | |
write_password_async |
|
No description available. | |
write_password_finish |
|
No description available. | |
clear_password_async |
|
No description available. | |
clear_password_finish |
|
No description available. |
Virtual methods
Purple.CredentialProviderClass.activate
Purple.CredentialProviderClass.clear_password_async
Clears the password for account
from provider
.
Available since: 3.0.0
Purple.CredentialProviderClass.clear_password_finish
Finishes a previous call to purple_credential_provider_clear_password_async().
Available since: 3.0.0
Purple.CredentialProviderClass.deactivate
Purple.CredentialProviderClass.read_password_async
Reads the password for account
from provider
.
Available since: 3.0.0
Purple.CredentialProviderClass.read_password_finish
Finishes a previous call to purple_credential_provider_read_password_async().
Available since: 3.0.0
Purple.CredentialProviderClass.write_password_async
Writes password
for account
to provider
.
Available since: 3.0.0
Purple.CredentialProviderClass.write_password_finish
Finishes a previous call to purple_credential_provider_write_password_async().
Available since: 3.0.0