Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / rgw / rgw_rest_realm.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #ifndef CEPH_RGW_REST_REALM_H
5 #define CEPH_RGW_REST_REALM_H
6
7 #include "rgw_rest.h"
8
9 class RGWRESTMgr_Realm : public RGWRESTMgr {
10 public:
11   RGWRESTMgr_Realm();
12
13   RGWHandler_REST* get_handler(struct req_state*,
14                                const rgw::auth::StrategyRegistry& auth_registry,
15                                const std::string&) override;
16 };
17
18 #endif