All Classes Files Functions Variables Enumerations Enumerator Groups Pages
CentralManagement.idl
Go to the documentation of this file.
1 /**
2 * @file CentralManagement.idl
3 * @brief Settings for MyKerio central management
4 * @copyright Copyright © 1997-2016 Kerio Technologies
5 */
6 
7 #import <kerio/web/idl/SharedStructures.idl>
8 
9 module kerio {
10 module jsonapi {
11 module admin {
12 
14  boolean enabled;
15  string appUrl;
16 };
17 
19  boolean connected;
20  boolean paired;
22 };
23 
24 interface CentralManagement {
25  void get(out CentralManagementConfig config);
26  void set(in CentralManagementConfig config);
27  void getStatus(out CentralManagementStatus status);
28  void reset();
29 };
30 
31 }; }; };