Interface NormalizationProvider.SystemPropertiesNormalization
-
- Enclosing interface:
- NormalizationProvider
public static interface NormalizationProvider.SystemPropertiesNormalizationAllows configuring the system property normalization of a project.- Since:
- 1.21
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NormalizationProvider.SystemPropertiesNormalizationaddIgnoredKeys(java.lang.String... systemPropertyNames)Allows configuring the normalization to ignore system properties supplied.NormalizationProvider.SystemPropertiesNormalizationaddIgnoredKeys(java.util.List<java.lang.String> systemPropertyNames)Allows configuring the normalization to ignore system properties supplied.NormalizationProvider.SystemPropertiesNormalizationsetIgnoredKeys(java.lang.String... systemPropertyNames)Allows configuring the normalization to ignore system properties supplied.NormalizationProvider.SystemPropertiesNormalizationsetIgnoredKeys(java.util.List<java.lang.String> systemPropertyNames)Allows configuring the normalization to ignore system properties supplied.
-
-
-
Method Detail
-
setIgnoredKeys
NormalizationProvider.SystemPropertiesNormalization setIgnoredKeys(java.lang.String... systemPropertyNames)
Allows configuring the normalization to ignore system properties supplied.- Parameters:
systemPropertyNames- the system properties to be ignored
-
setIgnoredKeys
NormalizationProvider.SystemPropertiesNormalization setIgnoredKeys(java.util.List<java.lang.String> systemPropertyNames)
Allows configuring the normalization to ignore system properties supplied.- Parameters:
systemPropertyNames- the system properties to be ignored
-
addIgnoredKeys
NormalizationProvider.SystemPropertiesNormalization addIgnoredKeys(java.lang.String... systemPropertyNames)
Allows configuring the normalization to ignore system properties supplied.- Parameters:
systemPropertyNames- the system properties to be ignored
-
addIgnoredKeys
NormalizationProvider.SystemPropertiesNormalization addIgnoredKeys(java.util.List<java.lang.String> systemPropertyNames)
Allows configuring the normalization to ignore system properties supplied.- Parameters:
systemPropertyNames- the system properties to be ignored
-
-