/**
  * Determines if the product is licensed.
  *
  * @return true if the product is licensed.
  */
 public static boolean isLicensed() {
   if (SetupUtils.isOssBuild()) {
     return true;
   }
   return LicenseUtils.isLicensed(false);
 }