Uses of Class
org.powertac.visualizer.domain.PersistentToken
-
Packages that use PersistentToken Package Description org.powertac.visualizer.domain JPA domain objects.org.powertac.visualizer.repository Spring Data JPA repositories.org.powertac.visualizer.web.rest Spring MVC REST controllers. -
-
Uses of PersistentToken in org.powertac.visualizer.domain
Methods in org.powertac.visualizer.domain that return types with arguments of type PersistentToken Modifier and Type Method Description Set<PersistentToken>
User. getPersistentTokens()
Method parameters in org.powertac.visualizer.domain with type arguments of type PersistentToken Modifier and Type Method Description void
User. setPersistentTokens(Set<PersistentToken> persistentTokens)
-
Uses of PersistentToken in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository that return types with arguments of type PersistentToken Modifier and Type Method Description List<PersistentToken>
PersistentTokenRepository. findByTokenDateBefore(LocalDate localDate)
List<PersistentToken>
PersistentTokenRepository. findByUser(User user)
-
Uses of PersistentToken in org.powertac.visualizer.web.rest
Methods in org.powertac.visualizer.web.rest that return types with arguments of type PersistentToken Modifier and Type Method Description org.springframework.http.ResponseEntity<List<PersistentToken>>
AccountResource. getCurrentSessions()
GET /account/sessions : get the current open sessions.
-