private static PropertyDef<ConfigTree, LicenseHeaderInfo> createPropertyDef() {
   PropertyDef.Builder<ConfigTree, LicenseHeaderInfo> result =
       new PropertyDef.Builder<>(CONFIG_ROOT);
   result.setKeyEncodingDef(CommonProperties.getIdentityTreeKeyEncodingDef());
   result.setValueDef(getValueDef());
   return result.create();
 }