Class SerializationProperties.Convert
java.lang.Object
com.broadleafcommerce.common.extension.serialization.SerializationProperties.Convert
- Enclosing class:
- SerializationProperties
Configuration properties for managing object conversion settings within the application. This
class provides options for configuring allow lists and thread pool settings for serialization
tasks, allowing for customization and scalability.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanbooleanRepresents an additional list of permissible items that can extend the functionality of the standard allow list.longSpecifies the timeout for unused thread count above the min pool size.intSpecifies the maximum threads for the serialization pool.intSpecifies the minimum threads for the serialization pool.This variable is typically used to define a baseline set of permissible items that might be cross-referenced or extended by other lists for customization or enhanced functionality.inthashCode()voidsetAdditionalAllowList(List<String> additionalAllowList) Represents an additional list of permissible items that can extend the functionality of the standard allow list.voidsetExpireTimeSeconds(long expireTimeSeconds) Specifies the timeout for unused thread count above the min pool size.voidsetMaxPoolSize(int maxPoolSize) Specifies the maximum threads for the serialization pool.voidsetMinPoolSize(int minPoolSize) Specifies the minimum threads for the serialization pool.voidsetStandardAllowList(List<String> standardAllowList) This variable is typically used to define a baseline set of permissible items that might be cross-referenced or extended by other lists for customization or enhanced functionality.toString()
-
Constructor Details
-
Convert
public Convert()
-
-
Method Details
-
getStandardAllowList
This variable is typically used to define a baseline set of permissible items that might be cross-referenced or extended by other lists for customization or enhanced functionality. -
getAdditionalAllowList
Represents an additional list of permissible items that can extend the functionality of the standard allow list. This list provides flexibility for customization, allowing the addition of items beyond the predefined standard set. -
getMinPoolSize
public int getMinPoolSize()Specifies the minimum threads for the serialization pool. -
getMaxPoolSize
public int getMaxPoolSize()Specifies the maximum threads for the serialization pool. -
getExpireTimeSeconds
public long getExpireTimeSeconds()Specifies the timeout for unused thread count above the min pool size. -
setStandardAllowList
This variable is typically used to define a baseline set of permissible items that might be cross-referenced or extended by other lists for customization or enhanced functionality. -
setAdditionalAllowList
Represents an additional list of permissible items that can extend the functionality of the standard allow list. This list provides flexibility for customization, allowing the addition of items beyond the predefined standard set. -
setMinPoolSize
public void setMinPoolSize(int minPoolSize) Specifies the minimum threads for the serialization pool. -
setMaxPoolSize
public void setMaxPoolSize(int maxPoolSize) Specifies the maximum threads for the serialization pool. -
setExpireTimeSeconds
public void setExpireTimeSeconds(long expireTimeSeconds) Specifies the timeout for unused thread count above the min pool size. -
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-