Tizen 2.1 base
[platform/framework/web/wrt-security.git] / src / services / ace / dbus / api / ace_server_api.h
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  * @file        ace_server_api.h
18  * @author      Tomasz Swierczek (t.swierczek@samsung.com)
19  * @version     1.0
20  * @brief       This file contains definitions ACE server interface & methods.
21  */
22 #ifndef WRT_SRC_RPC_SECURITY_DAEMON_ACE_SERVER_API_H_
23 #define WRT_SRC_RPC_SECURITY_DAEMON_ACE_SERVER_API_H_
24
25 #include<string>
26
27
28 namespace WrtSecurity{
29 namespace AceServerApi{
30
31     // DBus interface names
32     inline const std::string INTERFACE_NAME()
33     {
34         return "org.tizen.AceCheckAccessInterface";
35     }
36
37     // RPC test function
38     // IN std::string
39     // OUT std::string
40     inline const std::string ECHO_METHOD()
41     {
42         return "echo";
43     }
44
45     // IN string subject
46     // IN string resource
47     // IN vector<string> function param names
48     // IN vector<string> function param values
49     // OUT int allow, deny, popup type
50     inline const std::string CHECK_ACCESS_METHOD()
51     {
52         return "check_access";
53     }
54 };
55 };
56
57
58 #endif // WRT_SRC_RPC_SECURITY_DAEMON_ACE_SERVER_API_H_