Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2018 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.api.config;
10

    
11
/**
12
 * @author a.kohlbecker
13
 * @since Feb 16, 2018
14
 *
15
 */
16
public class ApplicationConfigurationFile {
17

    
18
    String defaultContet =
19
            "#   application configuration file    #\n" +
20
            "######################################";
21

    
22
    String fileName;
23

    
24
    /**
25
     * @param defaultContet
26
     * @param fileName
27
     */
28
    public ApplicationConfigurationFile(String fileName, String defaultContet) {
29
        this.defaultContet = defaultContet;
30
        this.fileName = fileName;
31
    }
32

    
33
    /**
34
     * @return the defaultContet
35
     */
36
    public String getDefaultContet() {
37
        return defaultContet;
38
    }
39

    
40
    /**
41
     * @return the fileName
42
     */
43
    public String getFileName() {
44
        return fileName;
45
    }
46

    
47
}
(2-2/6)