source: contrib/MailArchiver/sources/src/serpro/mailarchiver/config/FinderServicesConfig.java @ 6785

Revision 6785, 3.3 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado codigo do MailArchiver?. Documentação na subpasta DOCS.

Line 
1/**
2 * MailArchiver is an application that provides services for storing and managing e-mail messages through a Web Services SOAP interface.
3 * Copyright (C) 2012  Marcio Andre Scholl Levien and Fernando Alberto Reuter Wendt and Jose Ronaldo Nogueira Fonseca Junior
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as
7 * published by the Free Software Foundation, either version 3 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19/******************************************************************************\
20*
21*  This product was developed by
22*
23*        SERVIÇO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO),
24*
25*  a government company established under Brazilian law (5.615/70),
26*  at Department of Development of Porto Alegre.
27*
28\******************************************************************************/
29
30package serpro.mailarchiver.config;
31
32import org.springframework.beans.factory.annotation.Autowired;
33import org.springframework.context.annotation.Bean;
34import org.springframework.context.annotation.Configuration;
35
36import serpro.mailarchiver.service.find.FBinaryBody;
37import serpro.mailarchiver.service.find.FFolder;
38import serpro.mailarchiver.service.find.FMessage;
39import serpro.mailarchiver.service.find.FTextBody;
40import serpro.mailarchiver.service.find.FUser;
41import serpro.mailarchiver.util.Logger;
42
43@Configuration
44public class FinderServicesConfig {
45
46    private static final Logger log = Logger.getLocalLogger();
47
48    @Autowired
49    private InfrastructureConfig infrastructureConfig;
50
51    public FinderServicesConfig() {
52        log.debug("Instanciando configuration bean FinderServicesConfig");
53    }
54
55    @Bean
56    public FFolder folderFinder() {
57        log.debug("Instanciando bean folderFinder");
58        FFolder folderFinder = new FFolder();
59        log.debug("Bean folderFinder configurado");
60        return folderFinder;
61    }
62
63    @Bean
64    public FMessage messageFinder() {
65        log.debug("Instanciando bean messageFinder");
66        FMessage messageFinder = new FMessage();
67        log.debug("Bean messageFinder configurado");
68        return messageFinder;
69    }
70
71    @Bean
72    public FBinaryBody binaryBodyFinder() {
73        log.debug("Instanciando bean binaryBodyFinder");
74        FBinaryBody binaryBodyFinder = new FBinaryBody();
75        log.debug("Bean binaryBodyFinder configurado");
76        return binaryBodyFinder;
77    }
78
79    @Bean
80    public FTextBody textBodyFinder() {
81        log.debug("Instanciando bean textBodyFinder");
82        FTextBody textBodyFinder = new FTextBody();
83        log.debug("Bean textBodyFinder configurado");
84        return textBodyFinder;
85    }
86
87    @Bean
88    public FUser userFinder() {
89        log.debug("Instanciando bean userFinder");
90        FUser userFinder = new FUser();
91        log.debug("Bean userFinder configurado");
92        return userFinder;
93    }
94}
Note: See TracBrowser for help on using the repository browser.