File indexing completed on 2024-04-28 07:49:02

0001 /*
0002  * This file was generated by qdbusxml2cpp version 0.8
0003  * Command line was:
0004  *
0005  * qdbusxml2cpp is Copyright (C) 2016 The Qt Company Ltd.
0006  *
0007  * This is an auto-generated file.
0008  * Do not edit! All changes made to it will be lost.
0009  */
0010 
0011 #ifndef VXLANDEVICEINTERFACE_H
0012 #define VXLANDEVICEINTERFACE_H
0013 
0014 #include "generictypes.h"
0015 
0016 #include <QDBusAbstractInterface>
0017 #include <QDBusObjectPath>
0018 #include <QObject>
0019 #include <QString>
0020 #include <QVariant>
0021 
0022 /*
0023  * Proxy class for interface org.freedesktop.NetworkManager.Device.Vxlan
0024  */
0025 class OrgFreedesktopNetworkManagerDeviceVxlanInterface : public QDBusAbstractInterface
0026 {
0027     Q_OBJECT
0028 public:
0029     static inline const char *staticInterfaceName()
0030 #ifdef NMQT_STATIC
0031     {
0032         return "org.kde.fakenetwork.Device.Vxlan";
0033     }
0034 #else
0035     {
0036         return "org.freedesktop.NetworkManager.Device.Vxlan";
0037     }
0038 #endif
0039 
0040 public:
0041     OrgFreedesktopNetworkManagerDeviceVxlanInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr);
0042 
0043     ~OrgFreedesktopNetworkManagerDeviceVxlanInterface() override;
0044 
0045     Q_PROPERTY(uint Ageing READ ageing)
0046     inline uint ageing() const
0047     {
0048         return qvariant_cast<uint>(property("Ageing"));
0049     }
0050 
0051     Q_PROPERTY(ushort DstPort READ dstPort)
0052     inline ushort dstPort() const
0053     {
0054         return qvariant_cast<ushort>(property("DstPort"));
0055     }
0056 
0057     Q_PROPERTY(QString Group READ group)
0058     inline QString group() const
0059     {
0060         return qvariant_cast<QString>(property("Group"));
0061     }
0062 
0063     Q_PROPERTY(QString HwAddress READ hwAddress)
0064     inline QString hwAddress() const
0065     {
0066         return qvariant_cast<QString>(property("HwAddress"));
0067     }
0068 
0069     Q_PROPERTY(uint Id READ id)
0070     inline uint id() const
0071     {
0072         return qvariant_cast<uint>(property("Id"));
0073     }
0074 
0075     Q_PROPERTY(bool L2miss READ l2miss)
0076     inline bool l2miss() const
0077     {
0078         return qvariant_cast<bool>(property("L2miss"));
0079     }
0080 
0081     Q_PROPERTY(bool L3miss READ l3miss)
0082     inline bool l3miss() const
0083     {
0084         return qvariant_cast<bool>(property("L3miss"));
0085     }
0086 
0087     Q_PROPERTY(bool Learning READ learning)
0088     inline bool learning() const
0089     {
0090         return qvariant_cast<bool>(property("Learning"));
0091     }
0092 
0093     Q_PROPERTY(uint Limit READ limit)
0094     inline uint limit() const
0095     {
0096         return qvariant_cast<uint>(property("Limit"));
0097     }
0098 
0099     Q_PROPERTY(QString Local READ local)
0100     inline QString local() const
0101     {
0102         return qvariant_cast<QString>(property("Local"));
0103     }
0104 
0105     Q_PROPERTY(QDBusObjectPath Parent READ parent)
0106     inline QDBusObjectPath parent() const
0107     {
0108         return qvariant_cast<QDBusObjectPath>(property("Parent"));
0109     }
0110 
0111     Q_PROPERTY(bool Proxy READ proxy)
0112     inline bool proxy() const
0113     {
0114         return qvariant_cast<bool>(property("Proxy"));
0115     }
0116 
0117     Q_PROPERTY(bool Rsc READ rsc)
0118     inline bool rsc() const
0119     {
0120         return qvariant_cast<bool>(property("Rsc"));
0121     }
0122 
0123     Q_PROPERTY(ushort SrcPortMax READ srcPortMax)
0124     inline ushort srcPortMax() const
0125     {
0126         return qvariant_cast<ushort>(property("SrcPortMax"));
0127     }
0128 
0129     Q_PROPERTY(ushort SrcPortMin READ srcPortMin)
0130     inline ushort srcPortMin() const
0131     {
0132         return qvariant_cast<ushort>(property("SrcPortMin"));
0133     }
0134 
0135     Q_PROPERTY(uchar Tos READ tos)
0136     inline uchar tos() const
0137     {
0138         return qvariant_cast<uchar>(property("Tos"));
0139     }
0140 
0141     Q_PROPERTY(uchar Ttl READ ttl)
0142     inline uchar ttl() const
0143     {
0144         return qvariant_cast<uchar>(property("Ttl"));
0145     }
0146 
0147 public Q_SLOTS: // METHODS
0148 Q_SIGNALS: // SIGNALS
0149     void PropertiesChanged(const QVariantMap &properties);
0150 };
0151 
0152 #endif