Enum WSTCPCodecConfigurator
- java.lang.Object
-
- java.lang.Enum<WSTCPCodecConfigurator>
-
- com.sun.xml.ws.transport.tcp.encoding.configurator.WSTCPCodecConfigurator
-
- All Implemented Interfaces:
Serializable,Comparable<WSTCPCodecConfigurator>
public enum WSTCPCodecConfigurator extends Enum<WSTCPCodecConfigurator>
SOAP/TCP code configurator- Author:
- Alexey Stashok
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAttributeValueMapMemoryLimit()Gets the limit on the memory size of Map of attribute values that will be indexed.intgetCharacterContentChunkMapMemoryLimit()Gets the limit on the memory size of Map of attribute values that will be indexed.DocumentParserFactorygetDocumentParserFactory()Get theDocumentParserFactoryDocumentSerializerFactorygetDocumentSerializerFactory()Get theDocumentSerializerFactoryintgetMaxAttributeValueSize()Gets the maximum size of attribute values that will be indexed.intgetMaxCharacterContentChunkSize()Gets the maximum size of character content chunks that will be indexed.intgetMinAttributeValueSize()Gets the minimum size of attribute values that will be indexed.intgetMinCharacterContentChunkSize()Gets the minimum size of character content chunks that will be indexed.ParserVocabularyFactorygetParserVocabularyFactory()Get theParserVocabularyFactorySerializerVocabularyFactorygetSerializerVocabularyFactory()Get 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 WSTCPCodecConfiguratorvalueOf(String name)Returns 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 Detail
-
INSTANCE
public static final WSTCPCodecConfigurator INSTANCE
-
-
Method Detail
-
values
public static WSTCPCodecConfigurator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WSTCPCodecConfigurator c : WSTCPCodecConfigurator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WSTCPCodecConfigurator valueOf(String name)
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
public DocumentParserFactory getDocumentParserFactory()
Get theDocumentParserFactory- Returns:
DocumentParserFactory
-
setDocumentParserFactory
public void setDocumentParserFactory(DocumentParserFactory documentParserFactory)
Set theDocumentParserFactory- Parameters:
documentParserFactory-DocumentParserFactory
-
getDocumentSerializerFactory
public DocumentSerializerFactory getDocumentSerializerFactory()
Get theDocumentSerializerFactory- Returns:
DocumentSerializerFactory
-
setDocumentSerializerFactory
public void setDocumentSerializerFactory(DocumentSerializerFactory documentSerializerFactory)
Set theDocumentSerializerFactory- Parameters:
documentSerializerFactory-DocumentSerializerFactory
-
getParserVocabularyFactory
public ParserVocabularyFactory getParserVocabularyFactory()
Get theParserVocabularyFactory- Returns:
ParserVocabularyFactory
-
setParserVocabularyFactory
public void setParserVocabularyFactory(ParserVocabularyFactory parserVocabularyFactory)
Set theParserVocabularyFactory- Parameters:
parserVocabularyFactory-ParserVocabularyFactory
-
getSerializerVocabularyFactory
public SerializerVocabularyFactory getSerializerVocabularyFactory()
Get theSerializerVocabularyFactory- Returns:
SerializerVocabularyFactory
-
setSerializerVocabularyFactory
public void setSerializerVocabularyFactory(SerializerVocabularyFactory serializerVocabularyFactory)
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.
-
-