Class AllowListConfigurationBuilder
- java.lang.Object
-
- org.infinispan.configuration.global.AllowListConfigurationBuilder
-
- All Implemented Interfaces:
Builder<AllowListConfiguration>
public class AllowListConfigurationBuilder extends Object implements Builder<AllowListConfiguration>
Configures theEmbeddedCacheManager
ClassAllowList
.- Since:
- 10.0
- Author:
- Ryan Emerson
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> AllowListConfigurationBuilder
addClass(String clazz)
Helper method that allows for registration of a class to theClassAllowList
.<T> AllowListConfigurationBuilder
addClasses(Class... classes)
Helper method that allows for registration of classes to theClassAllowList
.<T> AllowListConfigurationBuilder
addRegexp(String regex)
Helper method that allows for registration of a regexp to theClassAllowList
.<T> AllowListConfigurationBuilder
addRegexps(String... regexps)
Helper method that allows for registration of regexps to theClassAllowList
.AllowListConfiguration
create()
Create the configuration beanBuilder<?>
read(AllowListConfiguration template)
Reads the configuration from an already created configuration bean into this builder.void
validate()
Validate the data in this builder before building the configuration bean
-
-
-
Method Detail
-
addClass
public <T> AllowListConfigurationBuilder addClass(String clazz)
Helper method that allows for registration of a class to theClassAllowList
.
-
addClasses
public <T> AllowListConfigurationBuilder addClasses(Class... classes)
Helper method that allows for registration of classes to theClassAllowList
.
-
addRegexp
public <T> AllowListConfigurationBuilder addRegexp(String regex)
Helper method that allows for registration of a regexp to theClassAllowList
.
-
addRegexps
public <T> AllowListConfigurationBuilder addRegexps(String... regexps)
Helper method that allows for registration of regexps to theClassAllowList
.
-
validate
public void validate()
Description copied from interface:Builder
Validate the data in this builder before building the configuration bean- Specified by:
validate
in interfaceBuilder<AllowListConfiguration>
-
create
public AllowListConfiguration create()
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<AllowListConfiguration>
- Returns:
-
read
public Builder<?> read(AllowListConfiguration template)
Description copied from interface:Builder
Reads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
read
in interfaceBuilder<AllowListConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.
-
-