Class WhiteListConfigurationBuilder
- java.lang.Object
-
- org.infinispan.configuration.global.WhiteListConfigurationBuilder
-
- All Implemented Interfaces:
Builder<WhiteListConfiguration>
@Deprecated public class WhiteListConfigurationBuilder extends Object implements Builder<WhiteListConfiguration>
Deprecated.since 12.0. UseAllowListConfigurationBuilderthrough @SerializationConfigurationBuilder.allowList(). Will be removed in 14.0.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T> WhiteListConfigurationBuilderaddClass(String clazz)Deprecated.Helper method that allows for registration of a class to theClassAllowList.<T> WhiteListConfigurationBuilderaddClasses(Class... classes)Deprecated.Helper method that allows for registration of classes to theClassAllowList.<T> WhiteListConfigurationBuilderaddRegexp(String regex)Deprecated.Helper method that allows for registration of a regexp to theClassAllowList.<T> WhiteListConfigurationBuilderaddRegexps(String... regexps)Deprecated.Helper method that allows for registration of regexps to theClassAllowList.WhiteListConfigurationcreate()Deprecated.Create the configuration beanBuilder<?>read(WhiteListConfiguration template)Deprecated.Reads the configuration from an already created configuration bean into this builder.voidvalidate()Deprecated.Validate the data in this builder before building the configuration bean
-
-
-
Method Detail
-
addClass
public <T> WhiteListConfigurationBuilder addClass(String clazz)
Deprecated.Helper method that allows for registration of a class to theClassAllowList.
-
addClasses
public <T> WhiteListConfigurationBuilder addClasses(Class... classes)
Deprecated.Helper method that allows for registration of classes to theClassAllowList.
-
addRegexp
public <T> WhiteListConfigurationBuilder addRegexp(String regex)
Deprecated.Helper method that allows for registration of a regexp to theClassAllowList.
-
addRegexps
public <T> WhiteListConfigurationBuilder addRegexps(String... regexps)
Deprecated.Helper method that allows for registration of regexps to theClassAllowList.
-
validate
public void validate()
Deprecated.Description copied from interface:BuilderValidate the data in this builder before building the configuration bean- Specified by:
validatein interfaceBuilder<WhiteListConfiguration>
-
create
public WhiteListConfiguration create()
Deprecated.Description copied from interface:BuilderCreate the configuration bean- Specified by:
createin interfaceBuilder<WhiteListConfiguration>- Returns:
-
read
public Builder<?> read(WhiteListConfiguration template)
Deprecated.Description copied from interface:BuilderReads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
readin interfaceBuilder<WhiteListConfiguration>- Parameters:
template- the configuration from which to "clone" this config if needed.
-
-