proai.service
Interface ResponseData

All Superinterfaces:
Writable
All Known Implementing Classes:
ResponseDataImpl

public interface ResponseData
extends Writable

The data part of an OAI response. This may be complete in itself, as in the case of "Identify", or it may be one part in a series of "incomplete list" responses.


Method Summary
 java.lang.String getResumptionToken()
          Get the resumption token for the next part if this is one in a series of incomplete list responses (and not the last part).
 void release()
          Release any resources (such as files or locks on other resources) associated with the response data.
 
Methods inherited from interface proai.Writable
write
 

Method Detail

getResumptionToken

java.lang.String getResumptionToken()
Get the resumption token for the next part if this is one in a series of incomplete list responses (and not the last part).


release

void release()
             throws ServerException
Release any resources (such as files or locks on other resources) associated with the response data.

Throws:
ServerException