-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix "Inconsistecy in the validation result object" (#47)
Co-authored-by: Viacheslav Rudkovskyi <viachaslau.rudkovski@labs64.de>
- Loading branch information
1 parent
34bcf7f
commit 375ce83
Showing
3 changed files
with
59 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
NetLicensingClient/src/test/resources/mock/netlicensing-licensee-validate-offline.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<netlicensing xmlns="http://netlicensing.labs64.com/schema/context" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://netlicensing.labs64.com/schema/context | ||
https://go.netlicensing.io/schema/context/netlicensing-context-2.1.xsd"> | ||
<items> | ||
<item type="Licensee"> | ||
<property name="number">L001-TEST</property> | ||
</item> | ||
<item type="ProductModuleValidation"> | ||
<property name="productModuleNumber">M001-TEST</property> | ||
<property name="licensingModel">FeatureWithTimeVolume</property> | ||
<property name="productModuleName">Test module</property> | ||
<list name="LIST1"> | ||
<property name="valid">true</property> | ||
<property name="expires">2014-08-06T21:30:45.574Z</property> | ||
<property name="warningLevel">GREEN</property> | ||
</list> | ||
<list name="LIST2"> | ||
<property name="valid">true</property> | ||
<property name="expires">2014-08-06T21:30:45.186Z</property> | ||
<property name="warningLevel">GREEN</property> | ||
</list> | ||
</item> | ||
</items> | ||
</netlicensing> |