Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / GraphInventoryQueryClient.java
index 152e9d7..3ff564f 100644 (file)
@@ -27,115 +27,115 @@ import java.util.Map;
 import java.util.Map.Entry;
 import java.util.Optional;
 import java.util.stream.Collectors;
-
 import javax.ws.rs.core.GenericType;
-
 import org.onap.so.client.aai.entities.Results;
 import org.onap.so.client.graphinventory.entities.GraphInventoryResultWrapper;
 import org.onap.so.client.graphinventory.entities.Pathed;
 import org.onap.so.client.graphinventory.entities.ResourceAndUrl;
 import org.onap.so.client.graphinventory.entities.uri.GraphInventoryUri;
-
 import com.fasterxml.jackson.annotation.JsonTypeInfo.Id;
 import com.fasterxml.jackson.core.type.TypeReference;
 import com.fasterxml.jackson.databind.ObjectMapper;
 
 public abstract class GraphInventoryQueryClient<S, I, Wrapper extends GraphInventoryResultWrapper<?>, Type extends GraphInventoryObjectType> {
 
-       private Optional<String> depth = Optional.empty();
-       private boolean nodesOnly = false;
-       private Optional<GraphInventorySubgraphType> subgraph = Optional.empty();
-       private GraphInventoryClient client;
-       private GraphInventoryCommonObjectMapperProvider mapperProvider = new GraphInventoryCommonObjectMapperProvider();
-       
-       public GraphInventoryQueryClient(GraphInventoryClient client) {
-               this.client = client;
-       }
-       
-       protected abstract GraphInventoryUri getQueryUri();
-       
-       public String query(Format format, I query) {
-               return client.createClient(setupQueryParams(getQueryUri().queryParam("format", format.toString()))).put(query, String.class);
-       }
-       
-       protected <R> List<R> querySingleType(Format format, I query, Class<R> clazz) {
-               return client.createClient(
-                               setupQueryParams(getQueryUri().queryParam("format", format.toString()))).put(
-                                               query, new GenericType<Results<Object>>(){}).getResult()
-                               .stream().map(item -> {
-                                       try {
-                                               return mapperProvider.getMapper().readValue(mapperProvider.getMapper().writeValueAsString(item), clazz);
-                                       } catch (IOException e) {
-                                               throw new IllegalArgumentException("could not map values from json", e);
-                                       }
-                               }).collect(Collectors.toList());
-       }
-       
-       public List<Pathed> queryPathed(I query) {
-               return querySingleType(Format.PATHED, query, Pathed.class);
-       }
-       
-       public List<Id> queryId(I query) {
-               return querySingleType(Format.ID, query, Id.class);
-       }
-       
-       public <R> List<R> querySingleResource(I query, Class<R> clazz) {
-               try {
-                       return getResourceAndUrl(query).stream().map(item -> item.getWrapper().asBean(clazz).get()).collect(Collectors.toList());
-               } catch (IOException e) {
-                       throw new IllegalArgumentException("could not map values from json", e);
-               }
-       }
-       
-       public List<ResourceAndUrl<Wrapper>> getResourceAndUrl(I query) throws IOException {
-               List<ResourceAndUrl<Wrapper>> result = new ArrayList<>();
-               ObjectMapper mapper = mapperProvider.getMapper();
-               Results<Map<String, Object>> resultsFromJson = mapper.readValue(query(Format.RESOURCE_AND_URL, query),
-                               new TypeReference<Results<Map<String, Object>>>() {
-               });
-               for (Map<String, Object> m : resultsFromJson.getResult()) {
-                       for(Entry<String, Object> entrySet : m.entrySet()) {
-                               if (!entrySet.getKey().equals("url")) {
-                                       String url = (String)m.get("url");
-                                       String stringJson = mapper.writeValueAsString(entrySet.getValue());
-                                       result.add(new ResourceAndUrl<Wrapper>(url, createType(entrySet.getKey()), createWrapper(stringJson)));
-                               }
-                       }
-               }
-
-               return result;
-       }
-
-       public abstract Wrapper createWrapper(String json);
-       
-       public abstract Type createType(String name);
-       
-       public S depth (String depth) {
-               this.depth = Optional.of(depth);
-               return (S) this;
-       }
-       public S nodesOnly() {
-               this.nodesOnly = true;
-               return (S) this;
-       }
-       public S subgraph(GraphInventorySubgraphType type){
-               
-               subgraph =  Optional.of(type);
-
-               return (S) this;
-       }
-       
-       protected GraphInventoryUri setupQueryParams(GraphInventoryUri uri) {
-               GraphInventoryUri clone = uri.clone();
-               if (this.depth.isPresent()) {
-                       clone.queryParam("depth", depth.get());
-               }
-               if (this.nodesOnly) {
-                       clone.queryParam("nodesOnly", "");
-               }
-               if (this.subgraph.isPresent()) {
-                       clone.queryParam("subgraph", this.subgraph.get().toString());
-               }
-               return clone;
-       }
+    private Optional<String> depth = Optional.empty();
+    private boolean nodesOnly = false;
+    private Optional<GraphInventorySubgraphType> subgraph = Optional.empty();
+    private GraphInventoryClient client;
+    private GraphInventoryCommonObjectMapperProvider mapperProvider = new GraphInventoryCommonObjectMapperProvider();
+
+    public GraphInventoryQueryClient(GraphInventoryClient client) {
+        this.client = client;
+    }
+
+    protected abstract GraphInventoryUri getQueryUri();
+
+    public String query(Format format, I query) {
+        return client.createClient(setupQueryParams(getQueryUri().queryParam("format", format.toString()))).put(query,
+                String.class);
+    }
+
+    protected <R> List<R> querySingleType(Format format, I query, Class<R> clazz) {
+        return client.createClient(setupQueryParams(getQueryUri().queryParam("format", format.toString())))
+                .put(query, new GenericType<Results<Object>>() {}).getResult().stream().map(item -> {
+                    try {
+                        return mapperProvider.getMapper().readValue(mapperProvider.getMapper().writeValueAsString(item),
+                                clazz);
+                    } catch (IOException e) {
+                        throw new IllegalArgumentException("could not map values from json", e);
+                    }
+                }).collect(Collectors.toList());
+    }
+
+    public List<Pathed> queryPathed(I query) {
+        return querySingleType(Format.PATHED, query, Pathed.class);
+    }
+
+    public List<Id> queryId(I query) {
+        return querySingleType(Format.ID, query, Id.class);
+    }
+
+    public <R> List<R> querySingleResource(I query, Class<R> clazz) {
+        try {
+            return getResourceAndUrl(query).stream().map(item -> item.getWrapper().asBean(clazz).get())
+                    .collect(Collectors.toList());
+        } catch (IOException e) {
+            throw new IllegalArgumentException("could not map values from json", e);
+        }
+    }
+
+    public List<ResourceAndUrl<Wrapper>> getResourceAndUrl(I query) throws IOException {
+        List<ResourceAndUrl<Wrapper>> result = new ArrayList<>();
+        ObjectMapper mapper = mapperProvider.getMapper();
+        Results<Map<String, Object>> resultsFromJson = mapper.readValue(query(Format.RESOURCE_AND_URL, query),
+                new TypeReference<Results<Map<String, Object>>>() {});
+        for (Map<String, Object> m : resultsFromJson.getResult()) {
+            for (Entry<String, Object> entrySet : m.entrySet()) {
+                if (!entrySet.getKey().equals("url")) {
+                    String url = (String) m.get("url");
+                    String stringJson = mapper.writeValueAsString(entrySet.getValue());
+                    result.add(
+                            new ResourceAndUrl<Wrapper>(url, createType(entrySet.getKey()), createWrapper(stringJson)));
+                }
+            }
+        }
+
+        return result;
+    }
+
+    public abstract Wrapper createWrapper(String json);
+
+    public abstract Type createType(String name);
+
+    public S depth(String depth) {
+        this.depth = Optional.of(depth);
+        return (S) this;
+    }
+
+    public S nodesOnly() {
+        this.nodesOnly = true;
+        return (S) this;
+    }
+
+    public S subgraph(GraphInventorySubgraphType type) {
+
+        subgraph = Optional.of(type);
+
+        return (S) this;
+    }
+
+    protected GraphInventoryUri setupQueryParams(GraphInventoryUri uri) {
+        GraphInventoryUri clone = uri.clone();
+        if (this.depth.isPresent()) {
+            clone.queryParam("depth", depth.get());
+        }
+        if (this.nodesOnly) {
+            clone.queryParam("nodesOnly", "");
+        }
+        if (this.subgraph.isPresent()) {
+            clone.queryParam("subgraph", this.subgraph.get().toString());
+        }
+        return clone;
+    }
 }