Implement dbus stub for async API.
This commit is contained in:
parent
2b6e40b992
commit
c612123cc5
|
@ -12,36 +12,10 @@
|
||||||
|
|
||||||
using namespace QKeychain;
|
using namespace QKeychain;
|
||||||
|
|
||||||
QKeychain::Error Keychain::Private::readEntryImpl( QByteArray* pw,
|
void ReadPasswordJob::Private::doStart() {
|
||||||
const QString& key,
|
q->emitFinishedWithError( NotImplemented, QString() );
|
||||||
QString* err ) {
|
|
||||||
Q_UNUSED( key )
|
|
||||||
Q_ASSERT( pw );
|
|
||||||
Q_ASSERT( err );
|
|
||||||
return NotImplemented;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QKeychain::Error Keychain::Private::writeEntryImpl( const QString& key,
|
void WritePasswordJob::Private::doStart() {
|
||||||
const QByteArray& data_,
|
q->emitFinishedWithError( NotImplemented, QString() );
|
||||||
QString* err ) {
|
|
||||||
Q_ASSERT( err );
|
|
||||||
return NotImplemented;
|
|
||||||
}
|
|
||||||
|
|
||||||
QKeychain::Error Keychain::Private::deleteEntryImpl( const QString& key,
|
|
||||||
QString* err ) {
|
|
||||||
Q_ASSERT( err );
|
|
||||||
err->clear();
|
|
||||||
return NotImplemented;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QKeychain::Error Keychain::Private::entryExistsImpl( bool* exists,
|
|
||||||
const QString& key,
|
|
||||||
QString* err ) {
|
|
||||||
Q_ASSERT( exists );
|
|
||||||
Q_ASSERT( err );
|
|
||||||
err->clear();
|
|
||||||
*exists = false;
|
|
||||||
return NotImplemented;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue