Ignore:
Timestamp:
04/26/12 13:25:34 (12 years ago)
Author:
oschonef
Message:
  • first round of major refactoring to simply the provider
    • result sets converted to iterator/cursor-mode (better streaming support)
    • delegate serializing of records to Result and ResultList?
    • prepare getting rid of over-engineered and complicated MetadataFormats? classes (not done, yet)

HEADS UP: breaks existing API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • OAIProvider/trunk/src/main/java/eu/clarin/oai/provider/ext/Verb.java

    r1910 r1911  
    11package eu.clarin.oai.provider.ext;
     2
     3import java.io.IOException;
     4
     5import javax.xml.stream.XMLStreamException;
    26
    37import org.slf4j.Logger;
     
    1317    public abstract Argument[] getArguments();
    1418
    15     public abstract void process(VerbContext ctx) throws OAIException;
     19    public abstract void process(VerbContext ctx) throws IOException,
     20            XMLStreamException, OAIException;
    1621
    1722    public final boolean supportsArgument(String name) {
Note: See TracChangeset for help on using the changeset viewer.