Contains fixes to SQE review comments
authorJyothi Kumar Sambolu <s.jyothi@samsung.com>
Wed, 22 Feb 2017 14:20:37 +0000 (19:50 +0530)
committerJyothi Kumar Sambolu <s.jyothi@samsung.com>
Wed, 22 Feb 2017 14:20:37 +0000 (19:50 +0530)
Change-Id: I660b75b795a3b7eacf111b88b115075fd9f91b69
Signed-off-by: Jyothi Kumar Sambolu <s.jyothi@samsung.com>
packaging/csapi-account-fido-client.spec
src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/ErrorFactory.cs
src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafMessage.cs
src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafResponse.cs

index 55aca9d..517c494 100755 (executable)
@@ -8,7 +8,7 @@
 
 Name:       csapi-account-fido-client
 Summary:    FIDO UAF C# API for Tizen
-Version:    1.0.0
+Version:    1.0.1
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0
index ab912d6..ef3191a 100755 (executable)
@@ -72,7 +72,7 @@ namespace Tizen.Account.FidoClient
             }
             else if ((FidoErrorCode)error == FidoErrorCode.ProtocolError)
             {
-                return new Exception("Protocol error, the interaction may have timed out, or the UAF message is malformed.");
+                return new ArgumentException("Protocol error, the interaction may have timed out, or the UAF message is malformed.");
             }
             else if ((FidoErrorCode)error == FidoErrorCode.UserCancelled)
             {
index 9e60540..326c383 100755 (executable)
@@ -22,6 +22,13 @@ namespace Tizen.Account.FidoClient
     public class UafMessage
     {
         /// <summary>
+        /// The constructor
+        /// </summary>
+        public UafMessage()
+        {
+        }
+
+        /// <summary>
         /// The FIDO message in JSON format which is received from the relying party server
         /// </summary>
         public string Operation { get; set; }
index 4745749..ad85ac3 100755 (executable)
@@ -22,6 +22,13 @@ namespace Tizen.Account.FidoClient
     public class UafResponse
     {
         /// <summary>
+        /// The constructor
+        /// </summary>
+        public UafResponse()
+        {
+        }
+
+        /// <summary>
         /// FIDO response message in JSON format
         /// </summary>
         public string Response { set; get; }