package oracle.otnsamples.ibfbs.admin.helper;
public class ResultElement
{
private String m_summary;
private String m_URL;
private String m_snippet;
private String m_title;
private String m_cachedSize;
private Boolean m_relatedInformationPresent;
private String m_hostName;
private DirectoryCategory m_directoryCategory;
private String m_directoryTitle;
public ResultElement()
{
}
public ResultElement(String summary, String URL, String snippet, String title, String cachedSize, Boolean relatedInformationPresent, String hostName, DirectoryCategory directoryCategory, String directoryTitle)
{
m_summary = summary;
m_URL = URL;
m_snippet = snippet;
m_title = title;
m_cachedSize = cachedSize;
m_relatedInformationPresent = relatedInformationPresent;
m_hostName = hostName;
m_directoryCategory = directoryCategory;
m_directoryTitle = directoryTitle;
}
public void setSummary(String summary)
{
m_summary = summary;
}
public String getSummary()
{
return m_summary;
}
public void setURL(String URL)
{
m_URL = URL;
}
public String getURL()
{
return m_URL;
}
public void setSnippet(String snippet)
{
m_snippet = snippet;
}
public String getSnippet()
{
return m_snippet;
}
public void setTitle(String title)
{
m_title = title;
}
public String getTitle()
{
return m_title;
}
public void setCachedSize(String cachedSize)
{
m_cachedSize = cachedSize;
}
public String getCachedSize()
{
return m_cachedSize;
}
public void setRelatedInformationPresent(Boolean relatedInformationPresent)
{
m_relatedInformationPresent = relatedInformationPresent;
}
public Boolean getRelatedInformationPresent()
{
return m_relatedInformationPresent;
}
public void setHostName(String hostName)
{
m_hostName = hostName;
}
public String getHostName()
{
return m_hostName;
}
public void setDirectoryCategory(DirectoryCategory directoryCategory)
{
m_directoryCategory = directoryCategory;
}
public DirectoryCategory getDirectoryCategory()
{
return m_directoryCategory;
}
public void setDirectoryTitle(String directoryTitle)
{
m_directoryTitle = directoryTitle;
}
public String getDirectoryTitle()
{
return m_directoryTitle;
}
}