Uses of Class
it.unimib.unimibmodules.model.Survey
Packages that use Survey
Package
Description
-
Uses of Survey in it.unimib.unimibmodules.controller
Methods in it.unimib.unimibmodules.controller that return SurveyModifier and TypeMethodDescriptionSurveyController.convertToEntity
(SurveyDTO surveyDTO) Conversion of an instance of SurveyDTO to an instance of SurveySurveyRepository.get
(int id) Finds the survey identified by id in the databaseSurveyRepositoryReadOnly.get
(int id) Finds the survey identified by id in the databaseSurveyRepository.getByCompilationCode
(String code) Methods in it.unimib.unimibmodules.controller that return types with arguments of type SurveyModifier and TypeMethodDescriptionSurveyRepository.getAll()
Returns all surveys in the database.SurveyRepository.getAllLazy
(int offset, int limit) Returns all surveys in the database with lazy Loading.Finds the Survey in the database where text is contained in the name of the surveySurveyRepository.getByTextLazy
(String text, int offset, int limit) Finds the Survey in the database where text is contained in the name of the survey with Lazy LoadingMethods in it.unimib.unimibmodules.controller with parameters of type SurveyModifier and TypeMethodDescriptionvoid
Inserts an instance of Survey in the databaseSurveyController.convertToDTO
(Survey survey) Conversion of an instance of Survey to an instance of SurveyDTOSurveyController.convertToDTOAndSkipQuestions
(Survey survey) Conversion of an instance of Survey to an instance of SurveyDTO skipping QuestionsList -
Uses of Survey in it.unimib.unimibmodules.model
Fields in it.unimib.unimibmodules.model declared as SurveyModifier and TypeFieldDescriptionprivate Survey
Answer.survey
The survey to which this answer belongs.private Survey
SurveyQuestions.survey
The survey of the relationship.Fields in it.unimib.unimibmodules.model with type parameters of type SurveyModifier and TypeFieldDescriptionUser.surveysCreated
The list of the surveys created by the user. -
Uses of Survey in it.unimib.unimibmodules.repository
Methods in it.unimib.unimibmodules.repository that return SurveyModifier and TypeMethodDescriptionSurveyRepositoryImpl.get
(int id) Finds the survey identified by id in the databaseSurveyRepositoryImpl.getByCompilationCode
(String code) Methods in it.unimib.unimibmodules.repository that return types with arguments of type SurveyModifier and TypeMethodDescriptionSurveyDAO.findAllLazy
(int offset, int limit) SurveyDAO.findByCompilationCode
(int id) SurveyDAO.findByText
(String text, String id) SurveyDAO.findByTextLazy
(String text, String id, int offset, int limit) SurveyRepositoryImpl.getAll()
Returns all surveys from the database.SurveyRepositoryImpl.getAllLazy
(int offset, int limit) Returns all surveys from the database with Lazy Loading parameters.Finds all the surveys in the database where text is contained in their names or in their identifier.SurveyRepositoryImpl.getByTextLazy
(String text, int offset, int limit) Finds all the surveys in the database where text is contained in their names or in their identifier with Lazy Loading parameters.Methods in it.unimib.unimibmodules.repository with parameters of type SurveyModifier and TypeMethodDescriptionvoid
Inserts a new instance of Survey in the databaseMethod parameters in it.unimib.unimibmodules.repository with type arguments of type Survey