tizen 2.4 release
[framework/security/key-manager.git] / src / include / ckm / ckm-client-info.h
1 /*
2  *  Copyright (c) 2000 - 2013 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  * @file        ckm-client-info.h
18  * @author      Kyungwook Tak (k.tak@samsung.com)
19  * @version     1.0
20  * @brief       ClientInfo implementation.
21  */
22 #pragma once
23
24 #include <string>
25
26 #include <sys/types.h>
27
28 #include <ckm/ckm-type.h>
29
30 namespace CKM {
31
32 // ClientInfo consists of (zone name & uid)
33 class KEY_MANAGER_API ClientInfo {
34 public:
35     ClientInfo() = delete;
36
37     ClientInfo(const uid_t uid);
38
39     ClientInfo(const std::string &zone, const uid_t uid);
40
41     virtual ~ClientInfo();
42
43     uid_t getUID() const;
44
45     ClientID getClientID() const;
46
47     std::string getZone() const;
48
49 private:
50     const static std::string ZONE_DEFAULT;
51     const static std::string DELIMITER;
52     std::string m_zone;
53     uid_t m_uid;
54
55 };
56
57
58 } // namespace CKM