Skip navigation links

Oracle Secure Enterprise Search Java API Reference
10g Release 1 (10.1.8)

B32260-01


oracle.search.sdk.query
Interface DocumentInfo


public interface DocumentInfo

An interface representing information about a document that can be passed to a ResultFilterPlugin for filtering out documents.


Method Summary
 String getAccessURL()
          Returns the access URL of the document.
 int getContentLength()
          Returns the length of the contents of the document.
 String getDisplayURL()
          Returns the display URL of the document.
 Date getLastModifiedDate()
          Returns the date of last modification of the document.
 String getTitle()
          Returns the title of the document.
 void setDisplayURL(String displayUrl)
          Modifies the document display URL returned as a result.
 void setTitle(String title)
          Modifies the document title returned as a result.

 

Method Detail

getTitle

public String getTitle()
Returns the title of the document.
Returns:
title of document

setTitle

public void setTitle(String title)
Modifies the document title returned as a result.
Parameters:
title - the new title

getDisplayURL

public String getDisplayURL()
Returns the display URL of the document.
Returns:
display URL of document

setDisplayURL

public void setDisplayURL(String displayUrl)
Modifies the document display URL returned as a result.
Parameters:
displayUrl - the new display URL

getAccessURL

public String getAccessURL()
Returns the access URL of the document.
Returns:
access URL of document

getContentLength

public int getContentLength()
Returns the length of the contents of the document.
Returns:
content length

getLastModifiedDate

public Date getLastModifiedDate()
Returns the date of last modification of the document.
Returns:
date last modified

Skip navigation links

Oracle Secure Enterprise Search Java API Reference
10g Release 1 (10.1.8)

B32260-01


Copyright © 2006, Oracle. All rights reserved.