source: contrib/MailArchiver/sources/src/serpro/mailarchiver/config/beans.xml @ 6785

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

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

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4/**
5 * MailArchiver is an application that provides services for storing and managing e-mail messages through a Web Services SOAP interface.
6 * Copyright (C) 2012  Marcio Andre Scholl Levien and Fernando Alberto Reuter Wendt and Jose Ronaldo Nogueira Fonseca Junior
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22/******************************************************************************\
23*
24*  This product was developed by
25*
26*        SERVIÇO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO),
27*
28*  a government company established under Brazilian law (5.615/70),
29*  at Department of Development of Porto Alegre.
30*
31\******************************************************************************/
32-->
33
34<beans xmlns="http://www.springframework.org/schema/beans"
35       xmlns:tx="http://www.springframework.org/schema/tx"
36       xmlns:aop="http://www.springframework.org/schema/aop"
37       xmlns:context="http://www.springframework.org/schema/context"
38       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
39       xsi:schemaLocation="
40       http://www.springframework.org/schema/beans
41       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
42       http://www.springframework.org/schema/tx
43       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
44       http://www.springframework.org/schema/aop
45       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
46       http://www.springframework.org/schema/context
47       http://www.springframework.org/schema/context/spring-context-3.0.xsd">
48
49    <context:spring-configured/>
50
51    <context:component-scan base-package="serpro.mailarchiver"/>
52
53    <tx:annotation-driven transaction-manager="txManager" mode="aspectj"/>
54
55</beans>
Note: See TracBrowser for help on using the repository browser.