/**
  * Get singletonian instance of self
  *
  * @return Ai1ec_Http_Utility Singletonian instance of self
  */
 public static function instance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }