Package | Description |
---|---|
tap.metadata | |
tap.resource |
Modifier and Type | Class and Description |
---|---|
class |
TAPMetadata
Let listing all schemas, tables and columns available in a TAP service.
|
Modifier and Type | Class and Description |
---|---|
class |
ASync
Asynchronous resource of a TAP service.
|
class |
Availability
TAP resource describing the availability of a TAP service.
|
class |
Capabilities
TAP resource describing the capabilities of a TAP service.
|
class |
Examples
Additional TAP endpoint:
/examples . |
class |
ForwardResource
A
TAPResource which is able to "forward" an HTTP request toward a specified URI. |
class |
HomePage
Write the content of the TAP service's home page.
|
class |
Sync
Synchronous resource of a TAP service.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<java.lang.String,TAPResource> |
TAP.resources
List of all the other TAP resources of the service.
|
Modifier and Type | Method and Description |
---|---|
TAPResource |
TAP.getResource(java.lang.String resourceId)
Get the specified resource.
|
TAPResource |
TAP.removeResource(java.lang.String resourceId)
Remove the resource associated with the given ID/URI.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<TAPResource> |
TAP.getResources()
Let iterate over the full list of the TAP resources managed by this TAP service.
|
java.util.Iterator<TAPResource> |
TAP.getTAPResources()
Deprecated.
The name of this function has been normalized. So now, you should use
TAP.getResources()
which is doing exactly the same thing. |
Modifier and Type | Method and Description |
---|---|
boolean |
TAP.addResource(java.lang.String resourceId,
TAPResource newResource)
Add the given resource in this TAP service with the given ID (which will be also the URI to access this resource).
|
boolean |
TAP.addResource(TAPResource newResource)
Add the given resource in this TAP service.
|