@@ -357,29 +357,29 @@ public class Security extends Plugin implements SystemIndexPlugin, IngestPlugin,
357357 public static final LicensedFeature .Momentary IP_FILTERING_FEATURE =
358358 LicensedFeature .momentaryLenient (null , "security-ip-filtering" , License .OperationMode .GOLD );
359359 public static final LicensedFeature .Momentary AUDITING_FEATURE =
360- LicensedFeature .momentaryLenient (null , "security-auditing" , License .OperationMode .GOLD );
360+ LicensedFeature .momentary (null , "security-auditing" , License .OperationMode .GOLD );
361361 public static final LicensedFeature .Momentary TOKEN_SERVICE_FEATURE =
362- LicensedFeature .momentaryLenient (null , "security-token-service" , License .OperationMode .STANDARD );
362+ LicensedFeature .momentary (null , "security-token-service" , License .OperationMode .STANDARD );
363363
364364 private static final String REALMS_FEATURE_FAMILY = "security-realms" ;
365365 // Builtin realms (file/native) realms are Basic licensed, so don't need to be checked or tracked
366366 // Some realms (LDAP, AD, PKI) are Gold+
367367 public static final LicensedFeature .Persistent LDAP_REALM_FEATURE =
368- LicensedFeature .persistentLenient (REALMS_FEATURE_FAMILY , "ldap" , License .OperationMode .GOLD );
368+ LicensedFeature .persistent (REALMS_FEATURE_FAMILY , "ldap" , License .OperationMode .GOLD );
369369 public static final LicensedFeature .Persistent AD_REALM_FEATURE =
370- LicensedFeature .persistentLenient (REALMS_FEATURE_FAMILY , "active-directory" , License .OperationMode .GOLD );
370+ LicensedFeature .persistent (REALMS_FEATURE_FAMILY , "active-directory" , License .OperationMode .GOLD );
371371 public static final LicensedFeature .Persistent PKI_REALM_FEATURE =
372- LicensedFeature .persistentLenient (REALMS_FEATURE_FAMILY , "pki" , License .OperationMode .GOLD );
372+ LicensedFeature .persistent (REALMS_FEATURE_FAMILY , "pki" , License .OperationMode .GOLD );
373373 // SSO realms are Platinum+
374374 public static final LicensedFeature .Persistent SAML_REALM_FEATURE =
375- LicensedFeature .persistentLenient (REALMS_FEATURE_FAMILY , "saml" , License .OperationMode .PLATINUM );
375+ LicensedFeature .persistent (REALMS_FEATURE_FAMILY , "saml" , License .OperationMode .PLATINUM );
376376 public static final LicensedFeature .Persistent OIDC_REALM_FEATURE =
377- LicensedFeature .persistentLenient (REALMS_FEATURE_FAMILY , "oidc" , License .OperationMode .PLATINUM );
377+ LicensedFeature .persistent (REALMS_FEATURE_FAMILY , "oidc" , License .OperationMode .PLATINUM );
378378 public static final LicensedFeature .Persistent KERBEROS_REALM_FEATURE =
379- LicensedFeature .persistentLenient (REALMS_FEATURE_FAMILY , "kerberos" , License .OperationMode .PLATINUM );
379+ LicensedFeature .persistent (REALMS_FEATURE_FAMILY , "kerberos" , License .OperationMode .PLATINUM );
380380 // Custom realms are Platinum+
381381 public static final LicensedFeature .Persistent CUSTOM_REALMS_FEATURE =
382- LicensedFeature .persistentLenient (REALMS_FEATURE_FAMILY , "custom" , License .OperationMode .PLATINUM );
382+ LicensedFeature .persistent (REALMS_FEATURE_FAMILY , "custom" , License .OperationMode .PLATINUM );
383383
384384 public static final LicensedFeature .Momentary DELEGATED_AUTHORIZATION_FEATURE =
385385 LicensedFeature .momentary (null , "security-delegated-authorization" , License .OperationMode .PLATINUM );
0 commit comments