Class Details
- java.lang.Object
-
- com.funnelback.publicui.search.model.padre.Details
-
public class Details extends java.lang.ObjectDetails (header) of a PADRE result packet
Contains information about the collection and the PADRE version.
- Since:
- 11.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDetails.SchemaConstants for the PADRE XML result packet tags.
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringcollectionSizeSize of the index.private java.util.DatecollectionUpdatedLast updated date of the index.private java.lang.StringpadreVersionVersion of the PADRE query processor.private static java.lang.StringUPDATED_DATE_PATTERNPattern to use to parse the updated date of the index.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCollectionSize()Size of the index.java.util.DategetCollectionUpdated()Last updated date of the index.java.lang.StringgetPadreVersion()Version of the PADRE query processor.static java.text.SimpleDateFormatgetUpdateDateFormat()static java.lang.StringgetUpdateDatePatternWithoutLocal()voidsetCollectionSize(java.lang.String collectionSize)Size of the index.voidsetCollectionUpdated(java.util.Date collectionUpdated)Last updated date of the index.voidsetPadreVersion(java.lang.String padreVersion)Version of the PADRE query processor.java.lang.StringtoString()
-
-
-
Field Detail
-
UPDATED_DATE_PATTERN
private static final java.lang.String UPDATED_DATE_PATTERN
Pattern to use to parse the updated date of the index.- See Also:
- Constant Field Values
-
padreVersion
private java.lang.String padreVersion
Version of the PADRE query processor.
-
collectionSize
private java.lang.String collectionSize
Size of the index.
-
collectionUpdated
private java.util.Date collectionUpdated
Last updated date of the index.
-
-
Method Detail
-
getUpdateDatePatternWithoutLocal
public static final java.lang.String getUpdateDatePatternWithoutLocal()
-
getUpdateDateFormat
public static final java.text.SimpleDateFormat getUpdateDateFormat()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getPadreVersion
public java.lang.String getPadreVersion()
Version of the PADRE query processor.
-
setPadreVersion
public void setPadreVersion(java.lang.String padreVersion)
Version of the PADRE query processor.
-
getCollectionSize
public java.lang.String getCollectionSize()
Size of the index.
-
setCollectionSize
public void setCollectionSize(java.lang.String collectionSize)
Size of the index.
-
getCollectionUpdated
public java.util.Date getCollectionUpdated()
Last updated date of the index.
-
setCollectionUpdated
public void setCollectionUpdated(java.util.Date collectionUpdated)
Last updated date of the index.
-
-