Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / policy / CommonObjectMapperProvider.java
index f2f6f03..c55370f 100644 (file)
@@ -28,19 +28,19 @@ import com.fasterxml.jackson.databind.SerializationFeature;
 
 public class CommonObjectMapperProvider {
 
-       protected ObjectMapper mapper;
+    protected ObjectMapper mapper;
 
-       public CommonObjectMapperProvider() {
-               
-               mapper = new ObjectMapper();
-               mapper.setSerializationInclusion(Include.NON_NULL);
+    public CommonObjectMapperProvider() {
+
+        mapper = new ObjectMapper();
+        mapper.setSerializationInclusion(Include.NON_NULL);
         mapper.enable(MapperFeature.USE_ANNOTATIONS);
-               mapper.configure(SerializationFeature.WRAP_ROOT_VALUE, false);
-               mapper.configure(DeserializationFeature.UNWRAP_ROOT_VALUE, false);
-               mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
-       }
+        mapper.configure(SerializationFeature.WRAP_ROOT_VALUE, false);
+        mapper.configure(DeserializationFeature.UNWRAP_ROOT_VALUE, false);
+        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
+    }
 
-       public ObjectMapper getMapper() {
-               return mapper;
-       }
-}
\ No newline at end of file
+    public ObjectMapper getMapper() {
+        return mapper;
+    }
+}