summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authz_manager_external_state_s.h
diff options
context:
space:
mode:
authorDaniel Alabi <alabidan@gmail.com>2015-05-21 08:49:11 -0400
committerDaniel Alabi <alabidan@gmail.com>2015-05-21 13:43:43 -0400
commitc19715f0411f834e761128e64ec24488997383e6 (patch)
treef7b888a157f49b63fd13a0e1d4b11fe9a6d86132 /src/mongo/db/auth/authz_manager_external_state_s.h
parent70c7cba06315b14a92a4d46bf2244b990cda902b (diff)
downloadmongo-c19715f0411f834e761128e64ec24488997383e6.tar.gz
SERVER-18478 Clean up AuthzManagerExternalState
Removed insert/remove/update from the AuthzManagerExternalState* interfaces
Diffstat (limited to 'src/mongo/db/auth/authz_manager_external_state_s.h')
-rw-r--r--src/mongo/db/auth/authz_manager_external_state_s.h18
1 files changed, 0 insertions, 18 deletions
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<void(const BSONObj&)>& 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