Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@
public String featureDisplayName;

/**
* The value of the feature.
* Effective value of the feature. Contains the overridden value if set at the license level;
* otherwise, the entitlement set value.
*/
public String value;

/**
* Default value of the feature defined in the entitlement set; empty for features not inherited
* from an entitlement set.
*/
public String baseValue;

Check warning on line 24 in src/main/java/com/cryptlex/lexactivator/FeatureEntitlement.java

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Make baseValue a static final constant or non-public and provide accessors if needed.

See more on https://sonarcloud.io/project/issues?id=cryptlex_lexactivator-java&issues=AZzRrRA9sgBrw7iv2Pbs&open=AZzRrRA9sgBrw7iv2Pbs&pullRequest=57

/**
* Timestamp when the license feature entitlement will expire.
*/
Expand Down
Loading