This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-zigbee/libnymea-zigbee/zigbeesecurityconfiguration.cpp
2019-05-09 18:39:10 +02:00

27 lines
584 B
C++

#include "zigbeesecurityconfiguration.h"
ZigbeeSecurityConfiguration::ZigbeeSecurityConfiguration()
{
}
QString ZigbeeSecurityConfiguration::networkKey() const
{
return m_networkKey;
}
void ZigbeeSecurityConfiguration::setNetworkKey(const QString &networkKey)
{
m_networkKey = networkKey;
}
QString ZigbeeSecurityConfiguration::globalTrustCenterLinkKey() const
{
return m_globalTrustCenterLinkKey;
}
void ZigbeeSecurityConfiguration::setGlobalTrustCenterlinkKey(const QString &globalTrustCenterLinkKey)
{
m_globalTrustCenterLinkKey = globalTrustCenterLinkKey;
}