Project

General

Profile

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

    
12
/**
13
 * The mode how users should be handled during import.
14
 *
15
 * Note: This is not in the common package as CDM2CDM allows more modes (e.g. "original" then usual imports).
16
 *       But still should be discussed.
17
 *
18
 * @author a.mueller
19
 * @date 02.09.2022
20
 */
21
public enum UserImportMode {
22
    NONE,
23
    ORIGINAL,
24
//    CURRENT_USER,    not yet supported
25
//    ADMIN,
26
//    IMPORT_USER
27
    ;
28
}
(7-7/7)