Class SerializationConfigurationBuilder
java.lang.Object
org.infinispan.configuration.global.AbstractGlobalConfigurationBuilder
org.infinispan.configuration.global.SerializationConfigurationBuilder
- All Implemented Interfaces:
Builder<SerializationConfiguration>
,GlobalConfigurationChildBuilder
public class SerializationConfigurationBuilder
extends AbstractGlobalConfigurationBuilder
implements Builder<SerializationConfiguration>
Configures serialization and marshalling settings.
-
Method Summary
Modifier and TypeMethodDescriptionaddAdvancedExternalizer
(int id, AdvancedExternalizer<T> advancedExternalizer) Deprecated, for removal: This API element is subject to removal in a future version.addAdvancedExternalizer
(AdvancedExternalizer<T> advancedExternalizer) Deprecated, for removal: This API element is subject to removal in a future version.since 10.0,AdvancedExternalizer
's will be removed in a future release.addAdvancedExternalizer
(AdvancedExternalizer<T>... advancedExternalizers) Deprecated, for removal: This API element is subject to removal in a future version.since 10.0,AdvancedExternalizer
's will be removed in a future release.addContextInitializer
(org.infinispan.protostream.SerializationContextInitializer sci) addContextInitializers
(List<org.infinispan.protostream.SerializationContextInitializer> scis) addContextInitializers
(org.infinispan.protostream.SerializationContextInitializer... scis) create()
Create the configuration beanmarshaller
(Marshaller marshaller) Set the marshaller instance that will marshall and unmarshall cache entries.read
(SerializationConfiguration template, Combine combine) Reads the configuration from an already created configuration bean into this builder.schemaCompatibilityValidation
(org.infinispan.protostream.config.Configuration.SchemaValidation schemaValidation) toString()
void
validate()
Validate the data in this builder before building the configuration beanDeprecated, for removal: This API element is subject to removal in a future version.since 12.0.Methods inherited from class org.infinispan.configuration.global.AbstractGlobalConfigurationBuilder
addModule, asyncThreadPool, blockingThreadPool, build, clearModules, defaultCacheName, expirationThreadPool, getGlobalConfig, globalState, jmx, listenerThreadPool, metrics, module, modules, nonBlockingThreadPool, persistenceThreadPool, security, serialization, shutdown, site, tracing, transport
-
Method Details
-
attributes
- Specified by:
attributes
in interfaceBuilder<SerializationConfiguration>
-
marshaller
Set the marshaller instance that will marshall and unmarshall cache entries.- Parameters:
marshaller
-
-
getMarshaller
-
addAdvancedExternalizer
@Deprecated(forRemoval=true, since="10.0") public <T> SerializationConfigurationBuilder addAdvancedExternalizer(int id, AdvancedExternalizer<T> advancedExternalizer) Deprecated, for removal: This API element is subject to removal in a future version.since 10.0,AdvancedExternalizer
's will be removed in a future release. Please utilise ProtoStream annotations on Java objects instead by configuring aSerializationContextInitializer
viaaddContextInitializer(SerializationContextInitializer)
, or specifying a custom marshaller for user types viamarshaller(Marshaller)
.Helper method that allows for quick registration of anAdvancedExternalizer
implementation alongside its corresponding identifier. Remember that the identifier needs to a be positive number, including 0, and cannot clash with other identifiers in the system.- Parameters:
id
-advancedExternalizer
-
-
addAdvancedExternalizer
@Deprecated(forRemoval=true, since="10.0") public <T> SerializationConfigurationBuilder addAdvancedExternalizer(AdvancedExternalizer<T> advancedExternalizer) Deprecated, for removal: This API element is subject to removal in a future version.since 10.0,AdvancedExternalizer
's will be removed in a future release. Please utilise ProtoStream annotations on Java objects instead by configuring aSerializationContextInitializer
viaaddContextInitializer(SerializationContextInitializer)
, or specifying a custom marshaller for user types viamarshaller(Marshaller)
.Helper method that allows for quick registration of anAdvancedExternalizer
implementation alongside its corresponding identifier. Remember that the identifier needs to a be positive number, including 0, and cannot clash with other identifiers in the system.- Parameters:
advancedExternalizer
-
-
addAdvancedExternalizer
@Deprecated(forRemoval=true, since="10.0") public <T> SerializationConfigurationBuilder addAdvancedExternalizer(AdvancedExternalizer<T>... advancedExternalizers) Deprecated, for removal: This API element is subject to removal in a future version.since 10.0,AdvancedExternalizer
's will be removed in a future release. Please utilise ProtoStream annotations on Java objects instead by configuring aSerializationContextInitializer
viaaddContextInitializer(SerializationContextInitializer)
, or specifying a custom marshaller for user types viamarshaller(Marshaller)
.Helper method that allows for quick registration ofAdvancedExternalizer
implementations.- Parameters:
advancedExternalizers
-
-
addContextInitializer
public SerializationConfigurationBuilder addContextInitializer(org.infinispan.protostream.SerializationContextInitializer sci) -
addContextInitializers
public SerializationConfigurationBuilder addContextInitializers(org.infinispan.protostream.SerializationContextInitializer... scis) -
addContextInitializers
public SerializationConfigurationBuilder addContextInitializers(List<org.infinispan.protostream.SerializationContextInitializer> scis) -
allowList
-
schemaCompatibilityValidation
public SerializationConfigurationBuilder schemaCompatibilityValidation(org.infinispan.protostream.config.Configuration.SchemaValidation schemaValidation) -
whiteList
Deprecated, for removal: This API element is subject to removal in a future version.since 12.0. UseallowList()
instead. To be removed in 14.0. -
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<SerializationConfiguration>
-
create
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<SerializationConfiguration>
- Returns:
-
read
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<SerializationConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.combine
- the way attributes and children of this instance and the template should be combined.
-
toString
-
AdvancedExternalizer
's will be removed in a future release.