Activation: Override the set property functions

Create override functions so that actions can be taken based
on the value that the properties are being set to.

Change-Id: I70e9519246662d516a109af91f4456fb4f001c4f
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
diff --git a/activation.cpp b/activation.cpp
new file mode 100755
index 0000000..2841839
--- /dev/null
+++ b/activation.cpp
@@ -0,0 +1,27 @@
+#include "activation.hpp"
+
+namespace openpower
+{
+namespace software
+{
+namespace updater
+{
+
+auto Activation::activation(Activations value) ->
+        Activations
+{
+    return sdbusplus::xyz::openbmc_project::Software::server::Activation::
+            activation(value);
+}
+
+auto Activation::requestedActivation(RequestedActivations value) ->
+        RequestedActivations
+{
+    return sdbusplus::xyz::openbmc_project::Software::server::Activation::
+            requestedActivation(value);
+}
+
+} // namespace updater
+} // namespace software
+} // namespace openpower
+