Project

General

Profile

Download (730 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 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.mock;
10

    
11
public enum RegistrationStatus {
12

    
13
    PREPARATION,// A new record which is being edited by the Author
14
    CURATION, //A record ready for the curator to be validated.
15
    READY, //The record has passed the validation by the curator and is ready for publication.
16
    PUBLISHED, //The name or typification has finally been published.
17
    REJECTED //The registration has been rejected, the process is aborted and the record is preserved.
18

    
19
}
(3-3/3)