Change occ control service name

Currently, only thing that OCC controller does is create PassThrough
objects. However, there is a need now to create OCC Status objects
and hence some restructuring is needed to consume that.

Since OCC control now is doing more than one thing, service name is
changed to map to that.

Change-Id: I466979a873d6f14385eb59d0e9d9f3a8b3f95a9b
Signed-off-by: Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com>
diff --git a/app.cpp b/app.cpp
index 4b73e51..449bea3 100644
--- a/app.cpp
+++ b/app.cpp
@@ -1,18 +1,19 @@
 #include <phosphor-logging/log.hpp>
 #include <exception>
-#include "occ_pass_through.hpp"
+#include "occ_manager.hpp"
+#include "config.h"
 
 int main(int argc, char* argv[])
 {
     try
     {
         auto bus = sdbusplus::bus::new_default();
-        bus.request_name(OCC_PASS_THROUGH_BUSNAME);
+        bus.request_name(OCC_CONTROL_BUSNAME);
 
         sdbusplus::server::manager::manager objManager(bus,
-                                                       OCC_PASS_THROUGH_ROOT);
+                                                       OCC_CONTROL_ROOT);
 
-        open_power::occ::pass_through::manager::Manager mgr(bus);
+        open_power::occ::Manager mgr(bus);
 
         while (true)
         {