Uses of Class
org.powertac.visualizer.domain.Chart
-
Packages that use Chart 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 Chart in org.powertac.visualizer.domain
Methods in org.powertac.visualizer.domain that return Chart Modifier and Type Method Description Chart
View. getChart()
Methods in org.powertac.visualizer.domain with parameters of type Chart Modifier and Type Method Description void
View. setChart(Chart chart)
-
Uses of Chart in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository that return types with arguments of type Chart Modifier and Type Method Description List<Chart>
ChartRepository. findAllWithEagerRelationships()
List<Chart>
ChartRepository. findByOwnerIsCurrentUser(String login)
List<Chart>
ChartRepository. findByOwnerIsCurrentUserOrShared(String login)
Optional<Chart>
ChartRepository. findOneWithEagerRelationships(Long id)
-
Uses of Chart in org.powertac.visualizer.service
Methods in org.powertac.visualizer.service that return Chart Modifier and Type Method Description Chart
ChartService. save(Chart chart)
Save a chart.Methods in org.powertac.visualizer.service that return types with arguments of type Chart Modifier and Type Method Description org.springframework.data.domain.Page<Chart>
ChartService. findAll(org.springframework.data.domain.Pageable pageable)
Get all the charts.List<Chart>
ChartService. findByOwnerIsCurrentUserOrShared(String login)
Get all the charts owned by this user, plus all shared charts.Optional<Chart>
ChartService. findOne(Long id)
Get one chart by id.Methods in org.powertac.visualizer.service with parameters of type Chart Modifier and Type Method Description void
ChartService. delete(Chart chart)
Delete the chart.Chart
ChartService. save(Chart chart)
Save a chart. -
Uses of Chart in org.powertac.visualizer.web.rest
Methods in org.powertac.visualizer.web.rest that return types with arguments of type Chart Modifier and Type Method Description org.springframework.http.ResponseEntity<Chart>
ChartResource. createChart(@Valid Chart chart)
POST /charts : Create a new chart.org.springframework.http.ResponseEntity<List<Chart>>
ChartResource. getAllCharts(org.springframework.data.domain.Pageable pageable)
GET /charts : get all the charts.org.springframework.http.ResponseEntity<Chart>
ChartResource. getChart(Long id)
GET /charts/:id : get the "id" chart.org.springframework.http.ResponseEntity<List<Chart>>
ChartResource. getMyGames()
Get all charts owned by logged in user, plus all shared charts.org.springframework.http.ResponseEntity<Chart>
ChartResource. updateChart(@Valid Chart chart)
PUT /charts : Updates an existing chart.Methods in org.powertac.visualizer.web.rest with parameters of type Chart Modifier and Type Method Description org.springframework.http.ResponseEntity<Chart>
ChartResource. createChart(@Valid Chart chart)
POST /charts : Create a new chart.org.springframework.http.ResponseEntity<Chart>
ChartResource. updateChart(@Valid Chart chart)
PUT /charts : Updates an existing chart.
-