Add DRAFT stubs for Vehicle plugin
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Application / ApplicationInstallInfo.cpp
1 /*
2  * Copyright (c) 2011 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 #include "ApplicationInstallInfo.h"
19
20 namespace TizenApis {
21 namespace Api {
22 namespace Application {
23
24 ApplicationInstallInfo::ApplicationInstallInfo()
25 {
26 }
27
28 ApplicationInstallInfo::~ApplicationInstallInfo()
29 {
30 }
31
32 std::string ApplicationInstallInfo::getFilePath() const
33 {
34         return m_filePath;
35 }
36
37 void ApplicationInstallInfo::setFilePath(const std::string &filePath)
38 {
39         m_filePath = filePath;
40 }
41
42 std::string ApplicationInstallInfo::getAlgorithm() const
43 {
44         return m_algorithm;
45 }
46
47 void ApplicationInstallInfo::setAlgorithm(const std::string &algorithm)
48 {
49         m_algorithm = algorithm;
50 }
51
52 std::string ApplicationInstallInfo::getKey() const
53 {
54         return m_key;
55 }
56
57 void ApplicationInstallInfo::setKey(const std::string &key)
58 {
59         m_key = key;
60 }
61
62 std::string ApplicationInstallInfo::getPackageFormat() const
63 {
64         return m_packageFormat;
65 }
66
67 void ApplicationInstallInfo::setPackageFormat(const std::string &packageFormat)
68 {
69         m_packageFormat = packageFormat;
70 }
71
72 }
73 }
74 }