Uses of Class
de.trustable.ca3s.core.domain.UserPreference
-
Packages that use UserPreference Package Description de.trustable.ca3s.core.domain JPA domain objects.de.trustable.ca3s.core.repository Spring Data JPA repositories.de.trustable.ca3s.core.service Service layer beans.de.trustable.ca3s.core.service.impl de.trustable.ca3s.core.web.rest Spring MVC REST controllers.de.trustable.ca3s.core.web.rest.support -
-
Uses of UserPreference in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type UserPreference Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<UserPreference,String>UserPreference_. contentstatic javax.persistence.metamodel.SingularAttribute<UserPreference,Long>UserPreference_. idstatic javax.persistence.metamodel.SingularAttribute<UserPreference,String>UserPreference_. namestatic javax.persistence.metamodel.SingularAttribute<UserPreference,Long>UserPreference_. userIdMethods in de.trustable.ca3s.core.domain that return UserPreference Modifier and Type Method Description UserPreferenceUserPreference. content(String content)UserPreferenceUserPreference. name(String name)UserPreferenceUserPreference. userId(Long userId) -
Uses of UserPreference in de.trustable.ca3s.core.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type UserPreference Modifier and Type Method Description Optional<UserPreference>UserPreferenceRepository. findByNameforUser(String name, Long userId)List<UserPreference>UserPreferenceRepository. findByUser(Long userId) -
Uses of UserPreference in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return UserPreference Modifier and Type Method Description UserPreferenceUserPreferenceService. save(UserPreference userPreference)Save a userPreference.Methods in de.trustable.ca3s.core.service that return types with arguments of type UserPreference Modifier and Type Method Description List<UserPreference>UserPreferenceService. findAll()Get all the userPreferences.List<UserPreference>UserPreferenceService. findAllForUserId(Long userId)Get all the userPreferences for a user id.Optional<UserPreference>UserPreferenceService. findOne(Long id)Get the "id" userPreference.Optional<UserPreference>UserPreferenceService. findPreferenceForUserId(String name, Long userId)Get a specific userPreferences for a user id.Methods in de.trustable.ca3s.core.service with parameters of type UserPreference Modifier and Type Method Description UserPreferenceUserPreferenceService. save(UserPreference userPreference)Save a userPreference. -
Uses of UserPreference in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return UserPreference Modifier and Type Method Description UserPreferenceUserPreferenceServiceImpl. save(UserPreference userPreference)Save a userPreference.Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type UserPreference Modifier and Type Method Description List<UserPreference>UserPreferenceServiceImpl. findAll()Get all the userPreferences.List<UserPreference>UserPreferenceServiceImpl. findAllForUserId(Long id)Get all the userPreferences.Optional<UserPreference>UserPreferenceServiceImpl. findOne(Long id)Get one userPreference by id.Optional<UserPreference>UserPreferenceServiceImpl. findPreferenceForUserId(String name, Long userId)Get a specific userPreferences for a user id.Methods in de.trustable.ca3s.core.service.impl with parameters of type UserPreference Modifier and Type Method Description UserPreferenceUserPreferenceServiceImpl. save(UserPreference userPreference)Save a userPreference. -
Uses of UserPreference in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type UserPreference Modifier and Type Method Description org.springframework.http.ResponseEntity<UserPreference>UserPreferenceResource. createUserPreference(@Valid UserPreference userPreference)POST /user-preferences: Create a new userPreference.org.springframework.http.ResponseEntity<UserPreference>UserPreferenceResource. getUserPreference(Long id)GET /user-preferences/:id: get the "id" userPreference.org.springframework.http.ResponseEntity<UserPreference>UserPreferenceResource. updateUserPreference(@Valid UserPreference userPreference)PUT /user-preferences: Updates an existing userPreference.Methods in de.trustable.ca3s.core.web.rest with parameters of type UserPreference Modifier and Type Method Description org.springframework.http.ResponseEntity<UserPreference>UserPreferenceResource. createUserPreference(@Valid UserPreference userPreference)POST /user-preferences: Create a new userPreference.org.springframework.http.ResponseEntity<UserPreference>UserPreferenceResource. updateUserPreference(@Valid UserPreference userPreference)PUT /user-preferences: Updates an existing userPreference. -
Uses of UserPreference in de.trustable.ca3s.core.web.rest.support
Methods in de.trustable.ca3s.core.web.rest.support that return types with arguments of type UserPreference Modifier and Type Method Description org.springframework.http.ResponseEntity<UserPreference>UIDatasetSupport. getUserProperties(String name)GET userProperties/{name}: get user properties for the given name and the logged-in user.org.springframework.http.ResponseEntity<UserPreference>UIDatasetSupport. putUserProperties(String name, CertificateFilterList filterList)PUT userProperties/filterList/{name}: put the filter list settings for this user into his properties.
-