You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by bh...@apache.org on 2011/03/31 12:25:03 UTC

svn commit: r1087237 - /shindig/trunk/php/src/gadgets/SigningFetcherFactory.php

Author: bhofmann
Date: Thu Mar 31 10:25:03 2011
New Revision: 1087237

URL: http://svn.apache.org/viewvc?rev=1087237&view=rev
Log:
PHP: added getters to SigningFetcherFactory

Modified:
    shindig/trunk/php/src/gadgets/SigningFetcherFactory.php

Modified: shindig/trunk/php/src/gadgets/SigningFetcherFactory.php
URL: http://svn.apache.org/viewvc/shindig/trunk/php/src/gadgets/SigningFetcherFactory.php?rev=1087237&r1=1087236&r2=1087237&view=diff
==============================================================================
--- shindig/trunk/php/src/gadgets/SigningFetcherFactory.php (original)
+++ shindig/trunk/php/src/gadgets/SigningFetcherFactory.php Thu Mar 31 10:25:03 2011
@@ -38,6 +38,24 @@ class SigningFetcherFactory {
   }
 
   /**
+   *
+   * @return string
+   */
+  public function getKeyName()
+  {
+    return $this->keyName;
+  }
+
+  /**
+   *
+   * @return string
+   */
+  public function getPrivateKey()
+  {
+    return $this->privateKey;
+  }
+
+  /**
    * @param keyFile The file containing your private key for signing requests.
    */
   public function __construct($keyFile = null) {