Uses of Class
org.powertac.visualizer.domain.View
-
Packages that use View Package Description 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 View in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository that return types with arguments of type View Modifier and Type Method Description List<View>
ViewRepository. findByOwnerIsCurrentUser(String login)
List<View>
ViewRepository. findByOwnerIsCurrentUserOrShared(String login)
-
Uses of View in org.powertac.visualizer.service
Methods in org.powertac.visualizer.service that return View Modifier and Type Method Description View
ViewService. save(View view)
Save a view.Methods in org.powertac.visualizer.service that return types with arguments of type View Modifier and Type Method Description org.springframework.data.domain.Page<View>
ViewService. findAll(org.springframework.data.domain.Pageable pageable)
Get all the views.List<View>
ViewService. findByOwnerIsCurrentUserOrShared(String login)
Get all the views owned by this user, plus all shared views.Optional<View>
ViewService. findOne(Long id)
Get one view by id.Methods in org.powertac.visualizer.service with parameters of type View Modifier and Type Method Description void
ViewService. delete(View view)
Delete the view.View
ViewService. save(View view)
Save a view. -
Uses of View in org.powertac.visualizer.web.rest
Methods in org.powertac.visualizer.web.rest that return types with arguments of type View Modifier and Type Method Description org.springframework.http.ResponseEntity<View>
ViewResource. createView(@Valid View view)
POST /views : Create a new view.org.springframework.http.ResponseEntity<List<View>>
ViewResource. getAllViews(org.springframework.data.domain.Pageable pageable)
GET /views : get all the views.org.springframework.http.ResponseEntity<List<View>>
ViewResource. getMyViews()
Get all views owned by logged in user, plus all shared views.org.springframework.http.ResponseEntity<View>
ViewResource. getView(Long id)
GET /views/:id : get the "id" view.org.springframework.http.ResponseEntity<View>
ViewResource. updateView(@Valid View view)
PUT /views : Updates an existing view.Methods in org.powertac.visualizer.web.rest with parameters of type View Modifier and Type Method Description org.springframework.http.ResponseEntity<View>
ViewResource. createView(@Valid View view)
POST /views : Create a new view.org.springframework.http.ResponseEntity<View>
ViewResource. updateView(@Valid View view)
PUT /views : Updates an existing view.
-