summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authz_manager_external_state_d.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/authz_manager_external_state_d.h')
-rw-r--r--src/mongo/db/auth/authz_manager_external_state_d.h43
1 files changed, 43 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+
+#include <string>
+
+#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