Fixed typo
authorsung-su.kim <sung-su.kim@samsung.com>
Tue, 7 Jun 2016 04:18:54 +0000 (13:18 +0900)
committersung-su.kim <sung-su.kim@samsung.com>
Tue, 7 Jun 2016 04:21:05 +0000 (13:21 +0900)
- from RequestID to RequestId
- from ProvisioningIPChange to ProvisioningIPChanged
- from PingChange to PingChanged

Change-Id: I26986ff3480898beb2d90787872d937047950646

Tizen.Messaging/Push/PushConnectionStateEventArgs.cs
Tizen.Messaging/Push/PushImpl.cs
Tizen.Messaging/Push/PushMessageEventArgs.cs
tct-push-tizen-tests/src/Testcase/TSPush.cs

index 08f3a16..1b4dc39 100755 (executable)
@@ -1,4 +1,4 @@
-/// This File contains the Api's related to the PushConnectionStateEventArgs class
+/// This File contains the Api's related to the PushConnectionStateEventArgs class
 ///
 /// Copyright 2016 by Samsung Electronics, Inc.,
 ///
@@ -34,11 +34,11 @@ namespace Tizen.Messaging.Push
             /// <summary>
             /// To change the provisioning server IP.
             /// </summary>
-            ProvisioningIPChange = 2,
+            ProvisioningIPChanged = 2,
             /// <summary>
             /// Ping interval is changing.
             /// </summary>
-            PingChange = 3,
+            PingChanged = 3,
             /// <summary>
             /// Error Occured in Changing State.
             /// </summary>
@@ -73,4 +73,4 @@ namespace Tizen.Messaging.Push
             Error = error;
         }
     }
-}
\ No newline at end of file
+}
index 8c599e0..5924c00 100755 (executable)
@@ -73,7 +73,7 @@ namespace Tizen.Messaging.Push
                 result = Interop.Push.GetNotificationRequestId(notification, out requestid);
                 if ((result == Interop.Push.ServiceError.None) && !(String.IsNullOrEmpty(requestid)))
                 {
-                    ob.RequestID = requestid;
+                    ob.RequestId = requestid;
                 }
                 int time;
                 result = Interop.Push.GetNotificationTime(notification, out time);
@@ -200,4 +200,4 @@ namespace Tizen.Messaging.Push
             }
         }
     }
-}
\ No newline at end of file
+}
index 2f80bc6..6232755 100755 (executable)
@@ -73,11 +73,11 @@ namespace Tizen.Messaging.Push
         }
 
         /// <summary>
-        /// Gives the request ID of the notification.
+        /// Gives the request Id of the notification.
         /// </summary>
         /// <value>
-        /// It is a string value representing the request ID of the Notification.</value>
-        public string RequestID
+        /// It is a string value representing the request Id of the Notification.</value>
+        public string RequestId
         {
             get;
             internal set;
@@ -102,7 +102,7 @@ namespace Tizen.Messaging.Push
             ReceivedAt = new DateTime();
             Sender = "";
             SessionInfo= "";
-            RequestID = "";
+            RequestId = "";
         }
     }
 }
index 80a91c8..cbe136a 100644 (file)
@@ -1,4 +1,4 @@
-using System;
+using System;
 using System.Linq;
 using System.Reflection;
 using System.Collections;
@@ -396,14 +396,14 @@ namespace TizenTest.PushT {
                                        Tizen.Log.Info(TAG, "Executing TC:NotificationReceived_EVENT got event ReceivedAt"+e.ReceivedAt);
                                        Tizen.Log.Info(TAG, "Executing TC:NotificationReceived_EVENT got event Sender"+e.Sender);
                                        Tizen.Log.Info(TAG, "Executing TC:NotificationReceived_EVENT got event SessionInfo"+e.SessionInfo);
-                                       Tizen.Log.Info(TAG, "Executing TC:NotificationReceived_EVENT got event RequestID"+e.RequestID);
+                                       Tizen.Log.Info(TAG, "Executing TC:NotificationReceived_EVENT got event RequestID"+e.RequestId);
                                        Tizen.Log.Info(TAG, "Executing TC:NotificationReceived_EVENT got event Type"+e.Type);
                                        LogUtils.write(LogUtils.DEBUG, LogUtils.TAG, "Executing TC:NotificationReceived_EVENT got event AppData"+e.AppData);
                                        LogUtils.write(LogUtils.DEBUG, LogUtils.TAG, "Executing TC:NotificationReceived_EVENT got event Message"+e.Message);
                                        LogUtils.write(LogUtils.DEBUG, LogUtils.TAG, "Executing TC:NotificationReceived_EVENT got event ReceivedAt"+e.ReceivedAt);
                                        LogUtils.write(LogUtils.DEBUG, LogUtils.TAG, "Executing TC:NotificationReceived_EVENT got event Sender"+e.Sender);
                                        LogUtils.write(LogUtils.DEBUG, LogUtils.TAG, "Executing TC:NotificationReceived_EVENT got event SessionInfo"+e.SessionInfo);
-                                       LogUtils.write(LogUtils.DEBUG, LogUtils.TAG, "Executing TC:NotificationReceived_EVENT got event RequestID"+e.RequestID);
+                                       LogUtils.write(LogUtils.DEBUG, LogUtils.TAG, "Executing TC:NotificationReceived_EVENT got event RequestID"+e.RequestId);
                                        LogUtils.write(LogUtils.DEBUG, LogUtils.TAG, "Executing TC:NotificationReceived_EVENT got event Type"+e.Type);
                                        caught = true;
                                };
@@ -496,4 +496,4 @@ namespace TizenTest.PushT {
                        Push.PushServiceDisconnect();
         }
        }
-}
\ No newline at end of file
+}