Project

General

Profile

Download (1.02 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2016 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.remote.config;
10

    
11
import org.apache.log4j.Logger;
12
import org.springframework.context.annotation.Configuration;
13
import org.springframework.context.annotation.ImportResource;
14
import org.springframework.context.annotation.Profile;
15

    
16
/**
17
 * @author a.kohlbecker
18
 * @date Feb 25, 2016
19
 *
20
 */
21

    
22
@Profile("remoting")
23
@Configuration
24
@ImportResource(locations="classpath:/eu/etaxonomy/cdm/remoting-services.xml")
25
public class RemotingWebServices {
26

    
27
    public static final Logger logger = Logger.getLogger(RemotingWebServices.class);
28

    
29
    public RemotingWebServices() {
30
        logger.info("========================================");
31
        logger.info(" Spring Configuration Profile: Remoting");
32
        logger.info("========================================");
33
    }
34
}
(4-4/5)