From c19715f0411f834e761128e64ec24488997383e6 Mon Sep 17 00:00:00 2001 From: Daniel Alabi Date: Thu, 21 May 2015 08:49:11 -0400 Subject: SERVER-18478 Clean up AuthzManagerExternalState Removed insert/remove/update from the AuthzManagerExternalState* interfaces --- src/mongo/db/auth/authz_manager_external_state_s.h | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/mongo/db/auth/authz_manager_external_state_s.h') diff --git a/src/mongo/db/auth/authz_manager_external_state_s.h b/src/mongo/db/auth/authz_manager_external_state_s.h index 31295aa3ec3..606f423f61c 100644 --- a/src/mongo/db/auth/authz_manager_external_state_s.h +++ b/src/mongo/db/auth/authz_manager_external_state_s.h @@ -87,24 +87,6 @@ namespace mongo { const BSONObj& query, const BSONObj& projection, const stdx::function& resultProcessor); - - virtual Status insert(OperationContext* txn, - const NamespaceString& collectionName, - const BSONObj& document, - const BSONObj& writeConcern); - virtual Status update(OperationContext* txn, - const NamespaceString& collectionName, - const BSONObj& query, - const BSONObj& updatePattern, - bool upsert, - bool multi, - const BSONObj& writeConcern, - int* nMatched); - virtual Status remove(OperationContext* txn, - const NamespaceString& collectionName, - const BSONObj& query, - const BSONObj& writeConcern, - int* numRemoved); }; } // namespace mongo -- cgit v1.2.1