com.sun.xml.ws.transport.tcp.encoding.configurator
Enum WSTCPCodecConfigurator

java.lang.Object
  extended by java.lang.Enum<WSTCPCodecConfigurator>
      extended by com.sun.xml.ws.transport.tcp.encoding.configurator.WSTCPCodecConfigurator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WSTCPCodecConfigurator>

public enum WSTCPCodecConfigurator
extends java.lang.Enum<WSTCPCodecConfigurator>

SOAP/TCP code configurator


Enum Constant Summary
INSTANCE
           
 
Method Summary
 int getAttributeValueMapMemoryLimit()
          Gets the limit on the memory size of Map of attribute values that will be indexed.
 int getCharacterContentChunkMapMemoryLimit()
          Gets the limit on the memory size of Map of attribute values that will be indexed.
 DocumentParserFactory getDocumentParserFactory()
          Get the DocumentParserFactory
 DocumentSerializerFactory getDocumentSerializerFactory()
          Get the DocumentSerializerFactory
 int getMaxAttributeValueSize()
          Gets the maximum size of attribute values that will be indexed.
 int getMaxCharacterContentChunkSize()
          Gets the maximum size of character content chunks that will be indexed.
 int getMinAttributeValueSize()
          Gets the minimum size of attribute values that will be indexed.
 int getMinCharacterContentChunkSize()
          Gets the minimum size of character content chunks that will be indexed.
 ParserVocabularyFactory getParserVocabularyFactory()
          Get the ParserVocabularyFactory
 SerializerVocabularyFactory getSerializerVocabularyFactory()
          Get the SerializerVocabularyFactory
 void setAttributeValueMapMemoryLimit(int attributeValueMapMemoryLimit)
          Sets the limit on the memory size of Map of attribute values that will be indexed.
 void setCharacterContentChunkMapMemoryLimit(int characterContentChunkMapMemoryLimit)
          Sets the limit on the memory size of Map of attribute values that will be indexed.
 void setDocumentParserFactory(DocumentParserFactory documentParserFactory)
          Set the DocumentParserFactory
 void setDocumentSerializerFactory(DocumentSerializerFactory documentSerializerFactory)
          Set the DocumentSerializerFactory
 void setMaxAttributeValueSize(int maxAttributeValueSize)
          Sets the maximum size of attribute values that will be indexed.
 void setMaxCharacterContentChunkSize(int maxCharacterContentChunkSize)
          Sets the maximum size of character content chunks that will be indexed.
 void setMinAttributeValueSize(int minAttributeValueSize)
          Sets the minimum size of attribute values that will be indexed.
 void setMinCharacterContentChunkSize(int minCharacterContentChunkSize)
          Sets the minimum size of character content chunks that will be indexed.
 void setParserVocabularyFactory(ParserVocabularyFactory parserVocabularyFactory)
          Set the ParserVocabularyFactory
 void setSerializerVocabularyFactory(SerializerVocabularyFactory serializerVocabularyFactory)
          Set the SerializerVocabularyFactory
static WSTCPCodecConfigurator valueOf(java.lang.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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INSTANCE

public static final WSTCPCodecConfigurator INSTANCE
Method Detail

values

public static final WSTCPCodecConfigurator[] values()
Returns an array containing the constants of this enum type, in the order they're 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're declared

valueOf

public static WSTCPCodecConfigurator valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getDocumentParserFactory

public DocumentParserFactory getDocumentParserFactory()
Get the DocumentParserFactory

Returns:
DocumentParserFactory

setDocumentParserFactory

public void setDocumentParserFactory(DocumentParserFactory documentParserFactory)
Set the DocumentParserFactory

Parameters:
{@link - DocumentParserFactory}

getDocumentSerializerFactory

public DocumentSerializerFactory getDocumentSerializerFactory()
Get the DocumentSerializerFactory

Returns:
DocumentSerializerFactory

setDocumentSerializerFactory

public void setDocumentSerializerFactory(DocumentSerializerFactory documentSerializerFactory)
Set the DocumentSerializerFactory

Parameters:
{@link - DocumentSerializerFactory}

getParserVocabularyFactory

public ParserVocabularyFactory getParserVocabularyFactory()
Get the ParserVocabularyFactory

Returns:
ParserVocabularyFactory

setParserVocabularyFactory

public void setParserVocabularyFactory(ParserVocabularyFactory parserVocabularyFactory)
Set the ParserVocabularyFactory

Parameters:
{@link - ParserVocabularyFactory}

getSerializerVocabularyFactory

public SerializerVocabularyFactory getSerializerVocabularyFactory()
Get the SerializerVocabularyFactory

Returns:
SerializerVocabularyFactory

setSerializerVocabularyFactory

public void setSerializerVocabularyFactory(SerializerVocabularyFactory serializerVocabularyFactory)
Set the SerializerVocabularyFactory

Parameters:
{@link - 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:
size - 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:
size - 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:
size - 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:
size - 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:
size - 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:
size - The attribute value size limit. Any value less that a length of size limit will be indexed.