Found something interesting in the App object

While playing around with an app I ran code like this:

this.properties.each {
    log.debug("properties: $it")
}

and got this:

properties: allEntitlements=
{
  developer={
    isActive=0, 
    description=developer subscription, 
    quantity=0
  }, 
  installer={
    isActive=0, 
    description=entitlements for master installer, 
    quantity=0}, 
  installerClient={
    isActive=0, 
    description=client side entitlements for installer tools, 
    quantity=0}, 
  dashboardLocalization={
    isActive=0, 
    description=Dashboard localization features, 
    quantity=0}, 
  perUserDashboard={
    isActive=0, 
    description=User specific dashboard features, 
    quantity=0}, 
  cloudBackup={
    isActive=0, 
    description=Cloud backup, 
    quantity=0}, 
  hubWarranty={
    isActive=0, 
    description=Extended hub hardware warranty, 
    quantity=0}, 
  cloudRestore={
    isActive=0, 
    description=Cloud restore, 
    quantity=0}, 
  remoteAccess={
    isActive=0, 
    description=Allow admin UI access via cloud, 
    quantity=0}
}

Thought it was interesting and may give some insight into what is to come.

9 Likes