Add new steps for trust anchor
[platform/core/appfw/wgt-backend.git] / src / wgt / wgt_backend_data.h
1 // Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
2 // Use of this source code is governed by a apache 2.0 license that can be
3 // found in the LICENSE file.
4
5 #ifndef WGT_WGT_BACKEND_DATA_H_
6 #define WGT_WGT_BACKEND_DATA_H_
7
8 #include <common/installer_context.h>
9 #include <common/utils/property.h>
10
11 #include <wgt_manifest_handlers/appwidget_handler.h>
12 #include <wgt_manifest_handlers/content_handler.h>
13 #include <wgt_manifest_handlers/service_handler.h>
14 #include <wgt_manifest_handlers/setting_handler.h>
15 #include <wgt_manifest_handlers/trust_anchor_handler.h>
16
17 #include <string>
18 #include <vector>
19
20 namespace wgt {
21
22 /**
23  * \brief Class that is used within specific backends to keep additional
24  *        information regarding package
25  */
26 class WgtBackendData : public common_installer::BackendData {
27  public:
28   /**
29    * \brief Property of SettingInfo
30    */
31   Property<parse::SettingInfo> settings;
32
33   Property<parse::AppWidgetInfo> appwidgets;
34   Property<parse::ContentInfo> content;
35   Property<parse::ServiceList> service_list;
36   Property<parse::TrustAnchorInfo> trust_anchor;
37 };
38
39 }  // namespace wgt
40
41 #endif  // WGT_WGT_BACKEND_DATA_H_