Package | Description |
---|---|
tap |
Modifier and Type | Field and Description |
---|---|
TAPParameters |
TAPExecutionReport.parameters
List of all parameters provided in the user request.
|
protected TAPParameters |
TAPJob.tapParams
Parameters of this job for its execution.
|
protected TAPParameters |
ADQLExecutor.tapParams
List of all TAP parameters needed for the query execution (and particularly the ADQL query itself).
|
protected TAPParameters |
TAPSyncJob.tapParams
Parameters of the execution.
|
protected TAPParameters |
TAPSyncJob.SyncThread.tapParams
Parameters containing the ADQL query to execute and other execution parameters/options.
|
Modifier and Type | Method and Description |
---|---|
abstract TAPParameters |
TAPFactory.createTAPParameters(javax.servlet.http.HttpServletRequest request)
Extract all the TAP parameters from the given HTTP request (multipart or not) and return them.
|
TAPParameters |
AbstractTAPFactory.createTAPParameters(javax.servlet.http.HttpServletRequest request)
This implementation extracts standard TAP parameters from the given request.
|
abstract TAPParameters |
TAPFactory.createTAPParameters(java.util.Map<java.lang.String,java.lang.Object> params)
Identify all TAP parameters and gather them inside a
TAPParameters object. |
TAPParameters |
AbstractTAPFactory.createTAPParameters(java.util.Map<java.lang.String,java.lang.Object> params)
This implementation extracts standard TAP parameters from the given request.
|
TAPParameters |
TAPJob.getTapParams()
Get the object storing and managing the set of all (UWS and TAP)
parameters.
|
TAPParameters |
TAPSyncJob.getTapParams()
Get the TAP parameters provided by the user and which will be used for the execution of this job.
|
Modifier and Type | Method and Description |
---|---|
protected abstract TAPJob |
TAPFactory.createTAPJob(java.lang.String jobId,
long creationTime,
JobOwner owner,
TAPParameters params,
long quote,
long startTime,
long endTime,
java.util.List<Result> results,
ErrorSummary error)
Create a PENDING asynchronous job with the given parameters.
|
protected TAPJob |
AbstractTAPFactory.createTAPJob(java.lang.String jobId,
long creationTime,
JobOwner owner,
TAPParameters params,
long quote,
long startTime,
long endTime,
java.util.List<Result> results,
ErrorSummary error)
This implementation provides a basic
TAPJob instance. |
protected void |
TAPSyncJob.deleteUploads(TAPParameters tapParams)
Delete all uploaded files.
|
TAPExecutionReport |
ADQLExecutor.start(java.lang.Thread thread,
java.lang.String jobId,
TAPParameters params,
javax.servlet.http.HttpServletResponse response)
Start the synchronous processing of the ADQL query.
|
Constructor and Description |
---|
SyncThread(ADQLExecutor executor,
java.lang.String ID,
TAPParameters tapParams,
javax.servlet.http.HttpServletResponse response)
Create a thread that will run the given executor with the given parameters.
|
TAPExecutionReport(java.lang.String jobID,
boolean synchronous,
TAPParameters params)
Build an empty execution report.
|
TAPJob(JobOwner owner,
TAPParameters tapParams)
Build a pending TAP job with the given parameters.
|
TAPJob(JobOwner owner,
TAPParameters tapParams,
java.lang.String requestID)
Build a pending TAP job with the given parameters.
|
TAPJob(java.lang.String jobID,
long creationTime,
JobOwner owner,
TAPParameters params,
long quote,
long startTime,
long endTime,
java.util.List<Result> results,
ErrorSummary error)
Restore a job in a state defined by the given parameters.
|
TAPSyncJob(ServiceConnection service,
TAPParameters params)
Create a synchronous TAP job.
|
TAPSyncJob(ServiceConnection service,
TAPParameters params,
java.lang.String requestID)
Create a synchronous TAP job.
|