Package com.tietoenator.trip.jxp.data
Class TdbRendition
- java.lang.Object
-
- com.tietoenator.trip.jxp.data.TdbFieldTemplate
-
- com.tietoenator.trip.jxp.data.TdbRendition
-
- Direct Known Subclasses:
TdbHighlightRendition
public class TdbRendition extends TdbFieldTemplate
Extends TdbFieldTemplate to provide rendition requests specific to STring fields. Currently supported rendition types can be found in the TdbRenditionType enum.
-
-
Constructor Summary
Constructors Constructor Description TdbRendition(java.lang.String name, TdbRenditionType type)
Constructor for a string template field with optional conversionTdbRendition(java.lang.String stringFieldName, java.lang.String filenameFieldName, TdbRenditionType type)
Constructor for a string template field with optional conversion.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getFilenameFieldName()
Retrieve the name of the phrase field containing the name of the file stored in the string field to which this field template applies.java.lang.String
getRenditionType()
Retrieve the type (protocol string) that reflects the rendition request-
Methods inherited from class com.tietoenator.trip.jxp.data.TdbFieldTemplate
clear, getAfterHits, getBaseName, getBeforeHits, getFetchType, getFieldContent, getFieldFetchOption, getName, getSizeHint, isFocused, isSummarized, setAfterHits, setBaseName, setBeforeHits, setFetchType, setFieldContent, setFieldFetchOption, setFocused, setName, setSizeHint, setSummarized, setSurroundHits
-
-
-
-
Constructor Detail
-
TdbRendition
public TdbRendition(java.lang.String name, TdbRenditionType type)
Constructor for a string template field with optional conversion- Parameters:
name
- Name of field to be retrievedtype
- The type of rendition to be performed during retrieval
-
TdbRendition
public TdbRendition(java.lang.String stringFieldName, java.lang.String filenameFieldName, TdbRenditionType type)
Constructor for a string template field with optional conversion.This constructor is strongly recommended for server-side HTML conversion using TRIPcof or TRIPview-C. If the file name is unknown, the rendition may not be successful.
- Parameters:
stringFieldName
- Name of the string field to be retrievedfilenameFieldName
- Name of a phrase field that contains the name of the file stored in the string fieldtype
- The type of the rendition to produce
-
-
Method Detail
-
getRenditionType
public java.lang.String getRenditionType()
Retrieve the type (protocol string) that reflects the rendition request
-
getFilenameFieldName
public java.lang.String getFilenameFieldName()
Retrieve the name of the phrase field containing the name of the file stored in the string field to which this field template applies.
-
-