Project

General

Profile

Download (644 Bytes) 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.dto.common;
10

    
11
/**
12
 * @author a.mueller
13
 * @since 25.11.2016
14
 *
15
 */
16
public class StringResultDTO {
17

    
18
    private String result;
19

    
20
    /**
21
     * @param result
22
     */
23
    public StringResultDTO(String result) {
24
        this.result = result;
25
    }
26

    
27
    /**
28
     * @return the result
29
     */
30
    public String getResult() {
31
        return result;
32
    }
33

    
34
}
(3-3/3)