1 | /* |
2 | * This file was generated by qdbusxml2cpp version 0.8 |
3 | * Command line was: |
4 | * |
5 | * qdbusxml2cpp is Copyright (C) 2016 The Qt Company Ltd. |
6 | * |
7 | * This is an auto-generated file. |
8 | * Do not edit! All changes made to it will be lost. |
9 | */ |
10 | |
11 | #ifndef MACSECDEVICEINTERFACE_H |
12 | #define MACSECDEVICEINTERFACE_H |
13 | |
14 | #include "generictypes.h" |
15 | |
16 | #include <QDBusAbstractInterface> |
17 | #include <QDBusObjectPath> |
18 | #include <QObject> |
19 | #include <QString> |
20 | #include <QVariant> |
21 | |
22 | /* |
23 | * Proxy class for interface org.freedesktop.NetworkManager.Device.Macsec |
24 | */ |
25 | class OrgFreedesktopNetworkManagerDeviceMacsecInterface : public QDBusAbstractInterface |
26 | { |
27 | Q_OBJECT |
28 | public: |
29 | static inline const char *staticInterfaceName() |
30 | #ifdef NMQT_STATIC |
31 | { |
32 | return "org.kde.fakenetwork.Device.Macsec" ; |
33 | } |
34 | #else |
35 | { |
36 | return "org.freedesktop.NetworkManager.Device.Macsec" ; |
37 | } |
38 | #endif |
39 | |
40 | public: |
41 | OrgFreedesktopNetworkManagerDeviceMacsecInterface(const QString &service, |
42 | const QString &path, |
43 | const QDBusConnection &connection, |
44 | QObject *parent = nullptr); |
45 | |
46 | ~OrgFreedesktopNetworkManagerDeviceMacsecInterface() override; |
47 | |
48 | Q_PROPERTY(qulonglong CipherSuite READ cipherSuite) |
49 | inline qulonglong cipherSuite() const |
50 | { |
51 | return qvariant_cast<qulonglong>(v: property(name: "CipherSuite" )); |
52 | } |
53 | |
54 | Q_PROPERTY(uchar EncodingSa READ encodingSa) |
55 | inline uchar encodingSa() const |
56 | { |
57 | return qvariant_cast<uchar>(v: property(name: "EncodingSa" )); |
58 | } |
59 | |
60 | Q_PROPERTY(bool Encrypt READ encrypt) |
61 | inline bool encrypt() const |
62 | { |
63 | return qvariant_cast<bool>(v: property(name: "Encrypt" )); |
64 | } |
65 | |
66 | Q_PROPERTY(bool Es READ es) |
67 | inline bool es() const |
68 | { |
69 | return qvariant_cast<bool>(v: property(name: "Es" )); |
70 | } |
71 | |
72 | Q_PROPERTY(uchar IcvLength READ icvLength) |
73 | inline uchar icvLength() const |
74 | { |
75 | return qvariant_cast<uchar>(v: property(name: "IcvLength" )); |
76 | } |
77 | |
78 | Q_PROPERTY(bool IncludeSci READ includeSci) |
79 | inline bool includeSci() const |
80 | { |
81 | return qvariant_cast<bool>(v: property(name: "IncludeSci" )); |
82 | } |
83 | |
84 | Q_PROPERTY(QDBusObjectPath Parent READ parent) |
85 | inline QDBusObjectPath parent() const |
86 | { |
87 | return qvariant_cast<QDBusObjectPath>(v: property(name: "Parent" )); |
88 | } |
89 | |
90 | Q_PROPERTY(bool Protect READ protect) |
91 | inline bool protect() const |
92 | { |
93 | return qvariant_cast<bool>(v: property(name: "Protect" )); |
94 | } |
95 | |
96 | Q_PROPERTY(bool ReplayProtect READ replayProtect) |
97 | inline bool replayProtect() const |
98 | { |
99 | return qvariant_cast<bool>(v: property(name: "ReplayProtect" )); |
100 | } |
101 | |
102 | Q_PROPERTY(bool Scb READ scb) |
103 | inline bool scb() const |
104 | { |
105 | return qvariant_cast<bool>(v: property(name: "Scb" )); |
106 | } |
107 | |
108 | Q_PROPERTY(qulonglong Sci READ sci) |
109 | inline qulonglong sci() const |
110 | { |
111 | return qvariant_cast<qulonglong>(v: property(name: "Sci" )); |
112 | } |
113 | |
114 | Q_PROPERTY(QString Validation READ validation) |
115 | inline QString validation() const |
116 | { |
117 | return qvariant_cast<QString>(v: property(name: "Validation" )); |
118 | } |
119 | |
120 | Q_PROPERTY(uint Window READ window) |
121 | inline uint window() const |
122 | { |
123 | return qvariant_cast<uint>(v: property(name: "Window" )); |
124 | } |
125 | |
126 | public Q_SLOTS: // METHODS |
127 | Q_SIGNALS: // SIGNALS |
128 | void PropertiesChanged(const QVariantMap &properties); |
129 | }; |
130 | |
131 | #endif |
132 | |