Merge "Remove the declaration of thrown exception"
authorSeshu Kumar M <seshu.kumar.m@huawei.com>
Mon, 23 Oct 2017 05:14:51 +0000 (05:14 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 23 Oct 2017 05:14:51 +0000 (05:14 +0000)
adapters/mso-adapter-utils/src/main/java/org/openecomp/mso/cloud/IdentityAuthenticationTypeJsonSerializer.java

index 0777c60..052f09a 100644 (file)
@@ -22,17 +22,15 @@ package org.openecomp.mso.cloud;
 import java.io.IOException;\r
 \r
 import org.codehaus.jackson.JsonGenerator;\r
-import org.codehaus.jackson.JsonProcessingException;\r
 import org.codehaus.jackson.map.JsonSerializer;\r
 import org.codehaus.jackson.map.SerializerProvider;\r
-import org.openecomp.mso.cloud.CloudIdentity.IdentityServerType;\r
 \r
 \r
 public class IdentityAuthenticationTypeJsonSerializer extends JsonSerializer<IdentityAuthenticationTypeAbstract> {\r
 \r
        @Override\r
        public void serialize(IdentityAuthenticationTypeAbstract tmpObj, JsonGenerator jsonGenerator, SerializerProvider serializerProvider)\r
-                       throws IOException, JsonProcessingException {\r
+                       throws IOException {\r
                jsonGenerator.writeObject(tmpObj.toString());\r
        }\r
 }\r