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="DirectoryCategory">
 * &lt;xsd:all>
 * &lt;xsd:element name="fullViewableName" type="xsd:string"/>
 * &lt;xsd:element name="specialEncoding" type="xsd:string"/>
 * &lt;/xsd:all>
 * &lt;/xsd:complexType>
 * </pre>
 */

public class DirectoryCategory 
{
  private String m_fullViewableName;

  private String m_specialEncoding;

  public DirectoryCategory()
  {
  }

  public DirectoryCategory(String fullViewableName, String specialEncoding)
  {
    m_fullViewableName = fullViewableName;
    m_specialEncoding = specialEncoding;
  }

  public void setFullViewableName(String fullViewableName)
  {
    m_fullViewableName = fullViewableName;
  }

  public String getFullViewableName()
  {
    return m_fullViewableName;
  }

  public void setSpecialEncoding(String specialEncoding)
  {
    m_specialEncoding = specialEncoding;
  }

  public String getSpecialEncoding()
  {
    return m_specialEncoding;
  }
}