6be001c2b174427e3770ad10fd42ff37dbebd368
[framework/web/wrt-commons.git] / modules / custom_handler_dao / include / wrt-commons / custom-handler-dao-ro / common_dao_types.h
1 /*
2  * Copyright (c) 2012 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  *
18  * @file    common_dao_types.h
19  * @author  Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
20  * @version 1.0
21  * @brief This file contains the declaration of
22  *           common data types for custom handler database.
23  */
24 #ifndef SHARE_COMMON_DAO_TYPES_H_
25 #define SHARE_COMMON_DAO_TYPES_H_
26
27 #include <list>
28 #include <memory>
29 #include <dpl/string.h>
30
31 namespace CustomHandlerDB {
32
33 /**
34  * @brief Custom Handler struct
35  *
36  * Describes custom handler for protocol and content.
37  */
38 struct CustomHandler
39 {
40     DPL::String target;     // protocol/content ("mailto"/"application/x-soup")
41     DPL::String base_url;   // base url of registered page
42     DPL::String url;        // url used for protocol/content handling
43     DPL::String title;      // user friendly handler name
44     bool user_allowed;      // true if user has allowed the handler
45 };
46
47 typedef std::shared_ptr<CustomHandler> CustomHandlerPtr;
48
49 } // namespace CustomHandlerDB
50
51 #endif /* SHARE_COMMON_DAO_TYPES_H_ */