1
|
<?php
|
2
|
/**
|
3
|
* @file
|
4
|
* enumerations as defined in the CDM library.
|
5
|
*
|
6
|
* @copyright
|
7
|
* (C) 2007-2015 EDIT
|
8
|
* European Distributed Institute of Taxonomy
|
9
|
* http://www.e-taxonomy.eu
|
10
|
*
|
11
|
* The contents of this module are subject to the Mozilla
|
12
|
* Public License Version 1.1.
|
13
|
* @see http://www.mozilla.org/MPL/MPL-1.1.html
|
14
|
*
|
15
|
* @author
|
16
|
* - Andreas Kohlbecker <a.kohlbecker@BGBM.org>
|
17
|
*/
|
18
|
abstract class OriginalSourceType {
|
19
|
const Aggregation = 'Aggregation';
|
20
|
const Import = 'Import';
|
21
|
const Lineage = 'Lineage';
|
22
|
const Other = 'Other';
|
23
|
const PrimaryMediaSource = 'PrimaryMediaSource';
|
24
|
const PrimaryTaxonomicSource = 'PrimaryTaxonomicSource';
|
25
|
const Transformation = 'Transformation';
|
26
|
const Unknown = 'Unknown';
|
27
|
}
|