Uses of Class
org.powertac.visualizer.domain.Graph
| Package | Description |
|---|---|
| org.powertac.visualizer.domain |
JPA domain objects.
|
| org.powertac.visualizer.repository |
Spring Data JPA repositories.
|
| org.powertac.visualizer.service |
Service layer beans.
|
| org.powertac.visualizer.web.rest |
Spring MVC REST controllers.
|
-
Uses of Graph in org.powertac.visualizer.domain
Methods in org.powertac.visualizer.domain that return types with arguments of type Graph Modifier and Type Method Description Set<Graph>Chart. getGraphs()Method parameters in org.powertac.visualizer.domain with type arguments of type Graph Modifier and Type Method Description voidChart. setGraphs(Set<Graph> graphs) -
Uses of Graph in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository that return types with arguments of type Graph Modifier and Type Method Description List<Graph>GraphRepository. findByOwnerIsCurrentUser(String login)List<Graph>GraphRepository. findByOwnerIsCurrentUserOrShared(String login) -
Uses of Graph in org.powertac.visualizer.service
Methods in org.powertac.visualizer.service that return Graph Modifier and Type Method Description GraphGraphService. save(Graph graph)Save a graph.Methods in org.powertac.visualizer.service that return types with arguments of type Graph Modifier and Type Method Description org.springframework.data.domain.Page<Graph>GraphService. findAll(org.springframework.data.domain.Pageable pageable)Get all the graphs.List<Graph>GraphService. findByOwnerIsCurrentUserOrShared(String login)Get all the graphs owned by this user, plus all shared graphs.Optional<Graph>GraphService. findOne(Long id)Get one graph by id. -
Uses of Graph in org.powertac.visualizer.web.rest
Methods in org.powertac.visualizer.web.rest that return types with arguments of type Graph Modifier and Type Method Description org.springframework.http.ResponseEntity<Graph>GraphResource. createGraph(@Valid Graph graph)POST /graphs : Create a new graph.org.springframework.http.ResponseEntity<List<Graph>>GraphResource. getAllGraphs(org.springframework.data.domain.Pageable pageable)GET /graphs : get all the graphs.org.springframework.http.ResponseEntity<Graph>GraphResource. getGraph(Long id)GET /graphs/:id : get the "id" graph.org.springframework.http.ResponseEntity<List<Graph>>GraphResource. getMyGraphs()Get all graphs owned by logged in user, plus all shared graphs.org.springframework.http.ResponseEntity<Graph>GraphResource. updateGraph(@Valid Graph graph)PUT /graphs : Updates an existing graph.Methods in org.powertac.visualizer.web.rest with parameters of type Graph Modifier and Type Method Description org.springframework.http.ResponseEntity<Graph>GraphResource. createGraph(@Valid Graph graph)POST /graphs : Create a new graph.org.springframework.http.ResponseEntity<Graph>GraphResource. updateGraph(@Valid Graph graph)PUT /graphs : Updates an existing graph.