Fix wrong log value
[platform/core/api/notification.git] / notification-ex / ievent_info_internal.h
index 15ca6ec..327b6f3 100644 (file)
 #ifndef NOTIFICATION_EX_IEVENT_INFO_INTERNAL_H_
 #define NOTIFICATION_EX_IEVENT_INFO_INTERNAL_H_
 
+#include "notification-ex/common.h"
 #include "notification-ex/ievent_info.h"
 
 namespace notification {
 
+/* LCOV_EXCL_START */
 class IEventInfoInternal : public IEventInfo {
  public:
   virtual ~IEventInfoInternal() = default;
   virtual uid_t GetUid() const = 0;
   virtual void SetUid(uid_t uid) = 0;
+  virtual uid_t GetValidatedUid() const = 0;
+  virtual void SetValidatedUid(uid_t uid) = 0;
+  virtual void SetValidatedOwner(std::string owner) = 0;
+  virtual std::string GetValidatedOwner() const = 0;
+  virtual NotificationError GetError() const = 0;
+  virtual void SetError(NotificationError error) = 0;
+  virtual void SetEventType(int type) = 0;
 };
+/* LCOV_EXCL_STOP */
 
 }  // namespace notification
 #endif  // NOTIFICATION_EX_IEVENT_INFO_INTERNAL_H_