update
Change-Id: I57f0ec460e07dae51dd6b25f14772096807a20b4
diff --git a/src/configuration.cpp b/src/configuration.cpp
index 5b01efc..9af6f28 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -188,7 +188,7 @@
namespace requester {
void
-RequesterCaCache::load(const std::string& fileName)
+ProfileStorage::load(const std::string& fileName)
{
JsonSection configJson;
try {
@@ -204,7 +204,7 @@
}
void
-RequesterCaCache::load(const JsonSection& configSection)
+ProfileStorage::load(const JsonSection& configSection)
{
m_caItems.clear();
auto caList = configSection.get_child("ca-list");
@@ -219,7 +219,7 @@
}
void
-RequesterCaCache::save(const std::string& fileName) const
+ProfileStorage::save(const std::string& fileName) const
{
JsonSection configJson;
for (const auto& caItem : m_caItems) {
@@ -234,13 +234,13 @@
}
void
-RequesterCaCache::removeCaProfile(const Name& caName)
+ProfileStorage::removeCaProfile(const Name& caName)
{
m_caItems.remove_if([&](const CaProfile& item) { return item.m_caPrefix == caName; });
}
void
-RequesterCaCache::addCaProfile(const CaProfile& profile)
+ProfileStorage::addCaProfile(const CaProfile& profile)
{
for (auto& item : m_caItems) {
if (item.m_caPrefix == profile.m_caPrefix) {