Changeset 2141


Ignore:
Timestamp:
08/23/12 09:06:37 (12 years ago)
Author:
oschonef
Message:
  • move RECORD_DATA_PARSER_SCHEMA_ANY to SRURecordDataParser
Location:
SRUClient/trunk/src/main/java/eu/clarin/sru/client
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUClient.java

    r2140 r2141  
    5252 */
    5353public class SRUClient {
    54     /** constant record data schema parser to match any schema */
    55     public static final String RECORD_DATA_PARSER_SCHEMA_ANY = "*";
    5654    /** default version the client will use, if not otherwise specified */
    5755    public static final SRUVersion DEFAULT_SRU_VERSION = SRUVersion.VERSION_1_2;
     
    10761074        SRURecordDataParser parser = parsers.get(schema);
    10771075        if (parser == null) {
    1078             parser = parsers.get(RECORD_DATA_PARSER_SCHEMA_ANY);
     1076            parser = parsers.get(SRURecordDataParser.RECORD_DATA_PARSER_SCHEMA_ANY);
    10791077        }
    10801078        return parser;
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRURecordDataParser.java

    r2088 r2141  
    2626 */
    2727public interface SRURecordDataParser {
     28    /** constant record data schema parser to match any schema */
     29    public static final String RECORD_DATA_PARSER_SCHEMA_ANY = "*";
     30
    2831
    2932    /**
Note: See TracChangeset for help on using the changeset viewer.