move certificate classes to their own namespace

This commit is contained in:
Robin Appelman 2014-08-18 13:43:25 +02:00
parent f135130a75
commit ba8416a04f
3 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,7 @@
* See the COPYING-README file.
*/
namespace OC;
namespace OC\Certificate;
use OCP\ICertificate;
@ -75,7 +75,7 @@ class Certificate implements ICertificate {
* @return string
*/
public function getSerial() {
return $this->getSerial();
return $this->serial;
}
/**

View File

@ -6,7 +6,7 @@
* See the COPYING-README file.
*/
namespace OC;
namespace OC\Certificate;
use OCP\ICertificateManager;

View File

@ -6,6 +6,7 @@ use OC\AppFramework\Http\Request;
use OC\AppFramework\Db\Db;
use OC\AppFramework\Utility\SimpleContainer;
use OC\Cache\UserCache;
use OC\Certificate\CertificateManager;
use OC\DB\ConnectionWrapper;
use OC\Files\Node\Root;
use OC\Files\View;