All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.stapi.graphoperations.graphLoader.GraphLoaderGetAsObjectOutput Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ai.stapi.graphoperations.graphLoader;

import ai.stapi.graph.inMemoryGraph.InMemoryGraphRepository;

public class GraphLoaderGetAsObjectOutput {

  private final ReturnObjectType data;
  private final InMemoryGraphRepository graph;

  public GraphLoaderGetAsObjectOutput(
      ReturnObjectType data,
      InMemoryGraphRepository graph
  ) {
    this.data = data;
    this.graph = graph;
  }

  public ReturnObjectType getData() {
    return data;
  }

  public InMemoryGraphRepository getGraph() {
    return graph;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy