Changeset 7160 for FCSSimpleEndpoint


Ignore:
Timestamp:
01/17/18 10:45:29 (6 years ago)
Author:
Oliver Schonefeld
Message:
  • add constants for Layer Type Identifiers defined by FCS spec
File:
1 edited

Legend:

Unmodified
Added
Removed
  • FCSSimpleEndpoint/trunk/src/main/java/eu/clarin/sru/server/fcs/Constants.java

    r6935 r7160  
    5252            SRUConstants.SRU_QUERY_TYPE_SEARCH_TERMS;
    5353
     54    /** constant Layer Type identifier for default "text" layer */
     55    public static final String FCS_LAYER_TYPE_TEXT = "text";
     56    /** constant Layer Type identifier for default "lemma" layer */
     57    public static final String FCS_LAYER_TYPE_LEMMA = "lemma";
     58    /** constant Layer Type identifier for default "pos" layer */
     59    public static final String FCS_LAYER_TYPE_POS = "pos";
     60    /** constant Layer Type identifier for default "orth" layer */
     61    public static final String FCS_LAYER_TYPE_ORTH = "orth";
     62    /** constant Layer Type identifier for default "norm" layer */
     63    public static final String FCS_LAYER_TYPE_NORM = "norm";
     64    /** constant Layer Type identifier for default "phonetic" layer */
     65    public static final String FCS_LAYER_TYPE_PHONETIC = "phonetic";
     66
     67   
    5468    /* hide constructor */
    5569    private Constants() {
Note: See TracChangeset for help on using the changeset viewer.