1#ifndef LS_LICENSE_FEATURE_H
2#define LS_LICENSE_FEATURE_H
7#pragma warning( disable : 4251 )
47 int32_t maxConsumption, int32_t totalConsumption, int32_t localConsumption,
48 const tm& expiryDate,
bool allowOverages, int32_t maxOverages,
49 bool resetConsumption,
bool allowUnlimitedConsumptions,
ConsumptionPeriod consumptionPeriod,
const std::string& metadata );
53 const std::string&
code()
const;
57 const std::string&
name()
const;
142 int32_t m_maxConsumption;
143 int32_t m_totalConsumption;
144 int32_t m_localConsumption;
145 int32_t m_maxOverages;
146 bool m_allowOverages;
147 bool m_allowUnlimitedConsumptions;
148 bool m_resetConsumption;
151 std::string m_metadata;
156#pragma warning( pop )
#define LS_API
Macros that expands to dllexport, dllimport or nothing on non Windows platforms or in case of static ...
LSFeatureType
Product feature type.
Class used for encapsulating LSConsumptionPeriod and converting cosumption period to/from string.
Class that encapsulates information about license feature.
static std::string FeatureTypeToString(LSFeatureType value)
Helper method, converts LSFeatureType to string.
bool isUnlimitedConsumptionAllowed() const
Checks if unlimited consumption is allowed for Consumption license feature.
LicenseFeature()
Constructs invalid license feature with no information.
LSFeatureType featureType() const
Getter method for license feature type.
const std::string & name() const
Getter method for license feature name.
bool isExpired() const
Checks if license feature expired.
const std::string & metadata() const
Getter method for license feature metadata.
static LSFeatureType FeatureTypeFromString(const std::string &value)
Helper method, converts string to LSFeatureType.
bool isResetConsumptionEnabled() const
Checks if consumption reset is allowed for Consumption license feature.
LicenseFeature(const std::string &code, const std::string &name, LSFeatureType type, int32_t maxConsumption, int32_t totalConsumption, int32_t localConsumption, const tm &expiryDate, bool allowOverages, int32_t maxOverages, bool resetConsumption, bool allowUnlimitedConsumptions, ConsumptionPeriod consumptionPeriod, const std::string &metadata)
Constructs license feature with all of provided info.
bool isOveragesAllowed() const
Checks if overage is allowed for Consumption license feature.
std::string toString() const
Helper method, compose license feature info into string.
ConsumptionPeriod consumptionPeriod() const
Returns period of time after which consumption is reset.
LicenseFeature(const std::string &code, const std::string &name, LSFeatureType type)
Constructs license feature with given code, name and type.
int32_t totalConsumption() const
Getter method for license feature current total consumption.
int32_t localConsumption() const
Getter method for license feature local consumption.
tm expiryDateUtc() const
Getter method for license feature expiry date in UTC.
int32_t maxOverages() const
Returns maximum overage allowed for the license feature.
int32_t maxConsumption() const
Getter method for license feature maximum consumption.
tm expiryDate() const
Getter method for license feature expiry date.
const std::string & code() const
Getter method for license feature code.