summaryrefslogtreecommitdiffstats
path: root/lib/public/icertificatemanager.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/icertificatemanager.php')
-rw-r--r--lib/public/icertificatemanager.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/public/icertificatemanager.php b/lib/public/icertificatemanager.php
index f6045fe5b28..ec88f32e291 100644
--- a/lib/public/icertificatemanager.php
+++ b/lib/public/icertificatemanager.php
@@ -24,12 +24,14 @@ namespace OCP;
/**
* Manage trusted certificates for users
+ * @since 8.0.0
*/
interface ICertificateManager {
/**
* Returns all certificates trusted by the user
*
* @return \OCP\ICertificate[]
+ * @since 8.0.0
*/
public function listCertificates();
@@ -37,11 +39,13 @@ interface ICertificateManager {
* @param string $certificate the certificate data
* @param string $name the filename for the certificate
* @return bool | \OCP\ICertificate
+ * @since 8.0.0
*/
public function addCertificate($certificate, $name);
/**
* @param string $name
+ * @since 8.0.0
*/
public function removeCertificate($name);
@@ -49,6 +53,7 @@ interface ICertificateManager {
* Get the path to the certificate bundle for this user
*
* @return string
+ * @since 8.0.0
*/
public function getCertificateBundle();
}