Fix static analysis issue
[platform/core/appfw/pkgmgr-info.git] / src / server / request_handler_factory.hh
1 /*
2  * Copyright (c) 2022 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef SERVER_REQUEST_HANDLER_FACTORY_
18 #define SERVER_REQUEST_HANDLER_FACTORY_
19
20 #include <memory>
21
22 #include "common/request_type.hh"
23 #include "server/request_handler/abstract_request_handler.hh"
24
25 namespace pkgmgr_server {
26
27 class RequestHandlerFactory {
28  public:
29   RequestHandlerFactory();
30   ~RequestHandlerFactory() = default;
31
32   std::shared_ptr<request_handler::AbstractRequestHandler> GetRequestHandler(
33       pkgmgr_common::ReqType type);
34
35  private:
36   std::shared_ptr<request_handler::AbstractRequestHandler>
37       handler[pkgmgr_common::ReqType::MAX];
38 };
39
40 }  // namespace pkgmgr_server
41
42 #endif  // SERVER_REQUEST_HANDLER_FACTORY_