Programatically get maximum number of users

0
How can I programatically get the maximum named users acomodated by the runtime?
asked
1 answers
1

com.mendix.basis.util.license.LicenseConfiguration does seem to contain it but I dont know what the standard way to call com.mendix.basis.util.license.LicenseConfiguration.getLicenseAsJson()
 

{
  "LicenseID": "000000000000000000000000000=",
  "Company": "ACME",
  "Components": [
    "Mobile"
  ],
  "LicenseType": "Subscription",
  "UserLimitations": [
    {
      "LimitationType": "Named",
      "AmountType": "Specified",
      "NumberOfAllowedUsers": 1000
    }
  ],
  "ExpirationDate": 1234567890123,
  "RuntimeMode": "Production",
  "SeparateAnonymousUsers": true
}

 

answered