-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCommon.lddl
More file actions
39 lines (33 loc) · 1012 Bytes
/
Common.lddl
File metadata and controls
39 lines (33 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Common definitions to be used throughout the LAPPS grid.
*/
/* Everyone on the LAPPS grid should use the same domain. */
DOMAIN = 'lapps.nlp'
/*
* Service types.
*
* Currently LAPPS has two service types:
* 1. data sources
* 2. processing services
*
* @deprecated: each service now has its own service type
* and service interface defined automatically.
* See the register_* functions Functions.lddl
*
*/
SERVICE = 'service.type.processor'
DATASOURCE = 'service.type.datasource'
/*
* Resource types
*
* The service manager requires a "resource type" for every service. However, in
* the context of LAPPS this only makes sense for DataSources. So most processing
* services will use the NONE_TYPE resource type as a pseudo-null value.
*/
CORPUS_TYPE = 'resource.type.corpus'
NONE_TYPE = 'resource.type.null'
// Resource ID values used by the data sources.
NONE_ID = 'resource.id.none'
/* License types. This list is by no means exhaustive. */
APACHE = 'Apache 2.0'
GPL = 'GPL'