From ed8e8bde125c38db215e1fe5dfbdc2ad560ced4e Mon Sep 17 00:00:00 2001 From: Spencer T Brody Date: Thu, 30 May 2013 17:00:12 -0400 Subject: Rename Auth[Global,Session]ExternalState --- src/mongo/db/auth/authz_manager_external_state_d.h | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/mongo/db/auth/authz_manager_external_state_d.h (limited to 'src/mongo/db/auth/authz_manager_external_state_d.h') diff --git a/src/mongo/db/auth/authz_manager_external_state_d.h b/src/mongo/db/auth/authz_manager_external_state_d.h new file mode 100644 index 00000000000..c06a74cae69 --- /dev/null +++ b/src/mongo/db/auth/authz_manager_external_state_d.h @@ -0,0 +1,43 @@ +/** +* Copyright (C) 2012 10gen Inc. +* +* This program is free software: you can redistribute it and/or modify +* it under the terms of the GNU Affero General Public License, version 3, +* as published by the Free Software Foundation. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU Affero General Public License for more details. +* +* You should have received a copy of the GNU Affero General Public License +* along with this program. If not, see . +*/ + +#pragma once + +#include + +#include "mongo/base/disallow_copying.h" +#include "mongo/base/status.h" +#include "mongo/db/auth/authz_manager_external_state.h" + +namespace mongo { + + /** + * The implementation of AuthzManagerExternalState functionality for mongod. + */ + class AuthzManagerExternalStateMongod : public AuthzManagerExternalState { + MONGO_DISALLOW_COPYING(AuthzManagerExternalStateMongod); + + public: + AuthzManagerExternalStateMongod(); + virtual ~AuthzManagerExternalStateMongod(); + + protected: + virtual bool _findUser(const string& usersNamespace, + const BSONObj& query, + BSONObj* result) const; + }; + +} // namespace mongo -- cgit v1.2.1