/**
  * @static
  * @return Sabre_DAV_Auth_Backend_Std
  */
 public static function &getInstance()
 {
     if (is_null(self::$intstance)) {
         self::$intstance = new Sabre_DAV_Auth_Backend_Std();
     }
     return self::$intstance;
 }