Change authority D-Bus names

Changing authority service references in code from 'ldap' to more
generic name, to comply with change in phosphor-certificate-manager.

Related change:
https://gerrit.openbmc.org/c/openbmc/phosphor-certificate-manager/+/65458

Tested:
Adding, reading and removal of CA Certificate works without any
noticeable regression.

Change-Id: Ia3e7a13bf7093bb7a9964769847d769475ed3e61
Signed-off-by: Michal Orzel <michalx.orzel@intel.com>
diff --git a/redfish-core/lib/certificate_service.hpp b/redfish-core/lib/certificate_service.hpp
index 2fd6b96..d01a51b 100644
--- a/redfish-core/lib/certificate_service.hpp
+++ b/redfish-core/lib/certificate_service.hpp
@@ -36,13 +36,13 @@
 constexpr const char* ldapServiceName =
     "xyz.openbmc_project.Certs.Manager.Client.Ldap";
 constexpr const char* authorityServiceName =
-    "xyz.openbmc_project.Certs.Manager.Authority.Ldap";
+    "xyz.openbmc_project.Certs.Manager.Authority.Truststore";
 constexpr const char* baseObjectPath = "/xyz/openbmc_project/certs";
 constexpr const char* httpsObjectPath =
     "/xyz/openbmc_project/certs/server/https";
 constexpr const char* ldapObjectPath = "/xyz/openbmc_project/certs/client/ldap";
 constexpr const char* authorityObjectPath =
-    "/xyz/openbmc_project/certs/authority/ldap";
+    "/xyz/openbmc_project/certs/authority/truststore";
 } // namespace certs
 
 /**