package oracle.otnsamples.ibfbs.admin.helper;
/**
 * Generated by the Oracle9i JDeveloper Web Services Stub/Skeleton Generator.
 * Date Created: Sat Aug 02 18:29:25 IST 2003
 * 
 * <pre>
 * &lt;xsd:complexType name="ResultElement">
 * &lt;xsd:all>
 * &lt;xsd:element name="summary" type="xsd:string"/>
 * &lt;xsd:element name="URL" type="xsd:string"/>
 * &lt;xsd:element name="snippet" type="xsd:string"/>
 * &lt;xsd:element name="title" type="xsd:string"/>
 * &lt;xsd:element name="cachedSize" type="xsd:string"/>
 * &lt;xsd:element name="relatedInformationPresent" type="xsd:boolean"/>
 * &lt;xsd:element name="hostName" type="xsd:string"/>
 * &lt;xsd:element name="directoryCategory" type="typens:DirectoryCategory"/>
 * &lt;xsd:element name="directoryTitle" type="xsd:string"/>
 * &lt;/xsd:all>
 * &lt;/xsd:complexType>
 * </pre>
 */

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;
  }
}