Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / serialization / queryformats / Console.java
index 18fed75..0e7642c 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.serialization.queryformats;
 
 import com.google.gson.JsonObject;
+
+import java.util.List;
+import java.util.Map;
+import java.util.Optional;
+
+import org.onap.aai.serialization.queryformats.exceptions.AAIFormatQueryResultFormatNotSupported;
 import org.onap.aai.serialization.queryformats.exceptions.AAIFormatVertexException;
 
 public class Console implements FormatMapper {
 
-       @Override
-       public JsonObject formatObject(Object v) throws AAIFormatVertexException {
-               
-               JsonObject json = new JsonObject();
-               json.addProperty("result", v.toString());
-               
-               return json;
-       }
-
-       @Override
-       public int parallelThreshold() {
-               return 100;
-       }
+    @Override
+    public Optional<JsonObject> formatObject(Object v) throws AAIFormatVertexException {
+
+        JsonObject json = new JsonObject();
+        json.addProperty("result", v.toString());
+
+        return Optional.of(json);
+    }
+
+    @Override
+    public Optional<JsonObject> formatObject(Object o, Map<String, List<String>> properties)
+            throws AAIFormatVertexException, AAIFormatQueryResultFormatNotSupported {
+        JsonObject json = new JsonObject();
+        json.addProperty("result", o.toString());
+        return Optional.of(json);
+    }
+
+    @Override
+    public int parallelThreshold() {
+        return 100;
+    }
 
 }