sdbusplus: object: don't use 'bool' argument constructor

`sdbusplus::server::object_t` has long had an enum-based parameter for
signal action, but maintained a backwards compatible boolean mapping.
It is time to remove this boolean to make it more observable which
actions are being used in applications.  Map all `true` occurrences to
`action::defer_emit`.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: If65b32e415f0b413df95f637f2c19187bea56590
diff --git a/occ_status.hpp b/occ_status.hpp
index 77fb82d..342c9f5 100644
--- a/occ_status.hpp
+++ b/occ_status.hpp
@@ -86,7 +86,8 @@
 #endif
            ) :
 
-        Interface(utils::getBus(), getDbusPath(path).c_str(), true),
+        Interface(utils::getBus(), getDbusPath(path).c_str(),
+                  Interface::action::defer_emit),
         path(path), managerCallBack(callBack), instance(getInstance(path)),
         manager(managerRef),
 #ifdef POWER10