re base code
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / util / HttpUtil.java
index f4f34a9..d9f0998 100644 (file)
 
 package org.openecomp.sdc.common.util;
 
-import java.io.ByteArrayOutputStream;
-import java.io.IOException;
-
-import javax.servlet.ServletInputStream;
-import javax.servlet.http.HttpServletRequest;
-
 import com.google.gson.Gson;
 import com.google.gson.GsonBuilder;
-
 import fj.data.Either;
 
+import javax.servlet.ServletInputStream;
+import javax.servlet.http.HttpServletRequest;
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+
 public class HttpUtil {
        public static Either<String, IOException> readJsonStringFromRequest(HttpServletRequest request) {
                Either<String, IOException> eitherResult;