GeoWebCache Blobstores

BlobStores configure the persistance of tile data.
More information: http://geoserver.org/comm/
Contact Info: geoserver-users@sourceforge.net
Version: 1.0.0
BasePath:/geoserver/gwc/rest
All rights reserved
http://apache.org/licenses/LICENSE-2.0.html

Access

Methods

[ Jump to Models ]

Table of Contents

Default

Default

Up
delete /blobstores/{blobstoreName}
Delete configured blobstore (blobstoreDelete)
Deletes a configured blobstore from the server.

Path parameters

blobstoreName (required)
Path Parameter — The name of the blobstore to delete.

Responses

200

OK

404

Unknown blobstore

Up
get /blobstores/{blobstoreName}
Retrieve a configured blobstore (blobstoreGet)
Retrieves a single configured blobstore definition.

Path parameters

blobstoreName (required)
Path Parameter — The name of the blobstore to retrieve.

Return type

BlobStore

Example data

Content-Type: application/xml
"\n  defaultCache\n  false\n  /tmp/defaultCache\n  4096\n\n"

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.

Responses

200

OK BlobStore

Example data

Content-Type: application/xml

  defaultCache
  false
  /tmp/defaultCache
  4096

404

Unknown blobstore

Up
put /blobstores/{blobstoreName}
Create or update a configured blobstore. (blobstorePut)
Creates a new configured blobstore on the server, or modifies an existing blobstore.

Path parameters

blobstoreName (required)
Path Parameter — The name of the blobstore to add or update.

Consumes

This API call consumes the following media types via the Content-Type request header:

Request body

blobstoreBody BlobStore (required)
Body Parameter — The new blobstore definition.

Responses

200

The blobstore was successfully updated.

201

The blobstore was successfully created.

Up
get /blobstores
Get a list of configured blobstores (blobstoresGet)
Displays a list of all configured blobstores on the server.

Return type

BlobStores

Example data

Content-Type: application/xml
"\n  \n    defaultCache\n    \n  \n\n"

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.

Responses

200

OK BlobStores

Example data

Content-Type: application/xml

  
    defaultCache
    
  


Models

[ Jump to Methods ]

Table of Contents

  1. BlobStore - blobStore
  2. BlobStoreReference - blobStore
  3. BlobStores - blobStores

BlobStore - blobStore Up

id (optional)
String Name of the blobstore. Should be unique.
enabled (optional)
Boolean Whether or not the blobstore is enabled.

BlobStoreReference - blobStore Up

name (optional)
String Name of the blobstore
link (optional)
String URL to blobstore definition

BlobStores - blobStores Up