Enum WSTCPCodecConfigurator
java.lang.Object
java.lang.Enum<WSTCPCodecConfigurator>
com.sun.xml.ws.transport.tcp.encoding.configurator.WSTCPCodecConfigurator
- All Implemented Interfaces:
Serializable,Comparable<WSTCPCodecConfigurator>
SOAP/TCP code configurator
- Author:
- Alexey Stashok
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionintGets the limit on the memory size of Map of attribute values that will be indexed.intGets the limit on the memory size of Map of attribute values that will be indexed.Get theDocumentParserFactoryGet theDocumentSerializerFactoryintGets the maximum size of attribute values that will be indexed.intGets the maximum size of character content chunks that will be indexed.intGets the minimum size of attribute values that will be indexed.intGets the minimum size of character content chunks that will be indexed.Get theParserVocabularyFactoryGet theSerializerVocabularyFactoryvoidsetAttributeValueMapMemoryLimit(int attributeValueMapMemoryLimit) Sets the limit on the memory size of Map of attribute values that will be indexed.voidsetCharacterContentChunkMapMemoryLimit(int characterContentChunkMapMemoryLimit) Sets the limit on the memory size of Map of attribute values that will be indexed.voidsetDocumentParserFactory(DocumentParserFactory documentParserFactory) Set theDocumentParserFactoryvoidsetDocumentSerializerFactory(DocumentSerializerFactory documentSerializerFactory) Set theDocumentSerializerFactoryvoidsetMaxAttributeValueSize(int maxAttributeValueSize) Sets the maximum size of attribute values that will be indexed.voidsetMaxCharacterContentChunkSize(int maxCharacterContentChunkSize) Sets the maximum size of character content chunks that will be indexed.voidsetMinAttributeValueSize(int minAttributeValueSize) Sets the minimum size of attribute values that will be indexed.voidsetMinCharacterContentChunkSize(int minCharacterContentChunkSize) Sets the minimum size of character content chunks that will be indexed.voidsetParserVocabularyFactory(ParserVocabularyFactory parserVocabularyFactory) Set theParserVocabularyFactoryvoidsetSerializerVocabularyFactory(SerializerVocabularyFactory serializerVocabularyFactory) Set theSerializerVocabularyFactorystatic WSTCPCodecConfiguratorReturns the enum constant of this type with the specified name.static WSTCPCodecConfigurator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getDocumentParserFactory
Get theDocumentParserFactory- Returns:
DocumentParserFactory
-
setDocumentParserFactory
Set theDocumentParserFactory- Parameters:
documentParserFactory-DocumentParserFactory
-
getDocumentSerializerFactory
Get theDocumentSerializerFactory- Returns:
DocumentSerializerFactory
-
setDocumentSerializerFactory
Set theDocumentSerializerFactory- Parameters:
documentSerializerFactory-DocumentSerializerFactory
-
getParserVocabularyFactory
Get theParserVocabularyFactory- Returns:
ParserVocabularyFactory
-
setParserVocabularyFactory
Set theParserVocabularyFactory- Parameters:
parserVocabularyFactory-ParserVocabularyFactory
-
getSerializerVocabularyFactory
Get theSerializerVocabularyFactory- Returns:
SerializerVocabularyFactory
-
setSerializerVocabularyFactory
Set theSerializerVocabularyFactory- Parameters:
serializerVocabularyFactory-SerializerVocabularyFactory
-
getMinAttributeValueSize
public int getMinAttributeValueSize()Gets the minimum size of attribute values that will be indexed.- Returns:
- The minimum attribute values size.
-
setMinAttributeValueSize
public void setMinAttributeValueSize(int minAttributeValueSize) Sets the minimum size of attribute values that will be indexed.- Parameters:
minAttributeValueSize- the minimum attribute values size.
-
getMaxAttributeValueSize
public int getMaxAttributeValueSize()Gets the maximum size of attribute values that will be indexed.- Returns:
- The maximum attribute values size.
-
setMaxAttributeValueSize
public void setMaxAttributeValueSize(int maxAttributeValueSize) Sets the maximum size of attribute values that will be indexed.- Parameters:
maxAttributeValueSize- the maximum attribute values size.
-
getAttributeValueMapMemoryLimit
public int getAttributeValueMapMemoryLimit()Gets the limit on the memory size of Map of attribute values that will be indexed.- Returns:
- The attribute value size limit.
-
setAttributeValueMapMemoryLimit
public void setAttributeValueMapMemoryLimit(int attributeValueMapMemoryLimit) Sets the limit on the memory size of Map of attribute values that will be indexed.- Parameters:
attributeValueMapMemoryLimit- The attribute value size limit. Any value less that a length of size limit will be indexed.
-
getMinCharacterContentChunkSize
public int getMinCharacterContentChunkSize()Gets the minimum size of character content chunks that will be indexed.- Returns:
- The minimum character content chunk size.
-
setMinCharacterContentChunkSize
public void setMinCharacterContentChunkSize(int minCharacterContentChunkSize) Sets the minimum size of character content chunks that will be indexed.- Parameters:
minCharacterContentChunkSize- the minimum character content chunk size.
-
getMaxCharacterContentChunkSize
public int getMaxCharacterContentChunkSize()Gets the maximum size of character content chunks that will be indexed.- Returns:
- The maximum character content chunk size.
-
setMaxCharacterContentChunkSize
public void setMaxCharacterContentChunkSize(int maxCharacterContentChunkSize) Sets the maximum size of character content chunks that will be indexed.- Parameters:
maxCharacterContentChunkSize- the maximum character content chunk size.
-
getCharacterContentChunkMapMemoryLimit
public int getCharacterContentChunkMapMemoryLimit()Gets the limit on the memory size of Map of attribute values that will be indexed.- Returns:
- The attribute value size limit.
-
setCharacterContentChunkMapMemoryLimit
public void setCharacterContentChunkMapMemoryLimit(int characterContentChunkMapMemoryLimit) Sets the limit on the memory size of Map of attribute values that will be indexed.- Parameters:
characterContentChunkMapMemoryLimit- The attribute value size limit. Any value less that a length of size limit will be indexed.
-