implemented sparky graph extensibility
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / viewandinspect / config / VisualizationConfigs.java
index b0834ca..acca775 100644 (file)
@@ -47,16 +47,12 @@ public class VisualizationConfigs {
   
   private ArrayList<String> shallowEntities;
   
-  private boolean gizmoEnabled;
-  
   private SparkyResourceLoader resourceLoader;
 
   /**
    * Instantiates a new visualization config.
    */
-  public VisualizationConfigs() {
-         this.gizmoEnabled = false;
-  }
+  public VisualizationConfigs() {}
 
   public ArrayList<String> getShallowEntities() {
     return shallowEntities;
@@ -135,14 +131,6 @@ public class VisualizationConfigs {
     this.numOfThreadsToFetchNodeIntegrity = numOfThreadsToFetchNodeIntegrity;
   }
 
-       public boolean isGizmoEnabled() {
-               return gizmoEnabled;
-       }
-
-       public void setGizmoEnabled(boolean gizmoEnabled) {
-               this.gizmoEnabled = gizmoEnabled;
-       }
-
   public SparkyResourceLoader getResourceLoader() {
     return resourceLoader;
   }
@@ -152,19 +140,22 @@ public class VisualizationConfigs {
   }
 
   @Override
-       public String toString() {
-               return "VisualizationConfigs [maxSelfLinkTraversalDepth=" + maxSelfLinkTraversalDepth
-                               + ", visualizationDebugEnabled=" + visualizationDebugEnabled + ", "
-                               + (aaiEntityNodeDescriptors != null ? "aaiEntityNodeDescriptors=" + aaiEntityNodeDescriptors + ", "
-                                               : "")
-                               + (generalNodeClassName != null ? "generalNodeClassName=" + generalNodeClassName + ", " : "")
-                               + (searchNodeClassName != null ? "searchNodeClassName=" + searchNodeClassName + ", " : "")
-                               + (selectedSearchedNodeClassName != null
-                                               ? "selectedSearchedNodeClassName=" + selectedSearchedNodeClassName + ", " : "")
-                               + "numOfThreadsToFetchNodeIntegrity=" + numOfThreadsToFetchNodeIntegrity
-                               + ", makeAllNeighborsBidirectional=" + makeAllNeighborsBidirectional + ", "
-                               + (shallowEntities != null ? "shallowEntities=" + shallowEntities + ", " : "") + "gizmoEnabled="
-                               + gizmoEnabled + "]";
-       }
+  public String toString() {
+    return "VisualizationConfigs [maxSelfLinkTraversalDepth=" + maxSelfLinkTraversalDepth
+        + ", visualizationDebugEnabled=" + visualizationDebugEnabled + ", "
+        + (aaiEntityNodeDescriptors != null
+            ? "aaiEntityNodeDescriptors=" + aaiEntityNodeDescriptors + ", " : "")
+        + (generalNodeClassName != null ? "generalNodeClassName=" + generalNodeClassName + ", "
+            : "")
+        + (searchNodeClassName != null ? "searchNodeClassName=" + searchNodeClassName + ", " : "")
+        + (selectedSearchedNodeClassName != null
+            ? "selectedSearchedNodeClassName=" + selectedSearchedNodeClassName + ", " : "")
+        + "numOfThreadsToFetchNodeIntegrity=" + numOfThreadsToFetchNodeIntegrity
+        + ", makeAllNeighborsBidirectional=" + makeAllNeighborsBidirectional + ", "
+        + (shallowEntities != null ? "shallowEntities=" + shallowEntities + ", " : "")
+        + (resourceLoader != null ? "resourceLoader=" + resourceLoader : "") + "]";
+  }
+
 
 }