org.molgenis.questionnaires.config.QuestionnaireConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-questionnaires Show documentation
Show all versions of molgenis-questionnaires Show documentation
Plugin module for gathering information from respondents using series of questions.
package org.molgenis.questionnaires.config;
import org.molgenis.i18n.PropertiesMessageSource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class QuestionnaireConfig {
@Bean
public PropertiesMessageSource questionnaireMessageSource() {
return new PropertiesMessageSource("questionnaire");
}
}