﻿//-----------------------------------------------------------------------------
// RSS
//
// Copyright 2005-2010 - Xcential Group LLC.
//
//-----------------------------------------------------------------------------

//=============================================================================
// Constructor

function RSS()
{

   //--------------------------------------------------------------------------
   // Private Interface

   //--------------------------------------------------------------------------
   // Privileged Interface

   this.valueOf = function()
   {

      return "RSS";
   }

   //--------------------------------------------------------------------------
   // Initialization

}

RSS.ClassName = "RSS";

//=============================================================================
// Static Interface

RSS.NAMESPACE_URI = "";
RSS.PREFERRED_PREFIX = "rss";

RSS.MEDIA_TYPE = "application/rss+xml";
RSS.FORMAT = "rss";

//=============================================================================

