| 
 | ||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See:
          Description
| Class Summary | |
|---|---|
| MappedSkwishResponseFactory | Packages a mapped skwish Provider with a skwish HTTP ResponseFactory. | 
| MappedUriProvider | A filter on a skwish service provider that maps input URIs to output URIs. | 
| QueryStringConsts | Defines some constants used by skwish in query strings. | 
| SkwishHttpMountPoint | Represents a skwish "mount" point on the HTTP server. | 
| SkwishHttpServer | An HTTP server with convenience methods for setting up skwish stores and serving entries from them. | 
| SkwishResponseFactory | The skwish HTTP application. | 
An experimental read-only HTTP interface to skwish is provided here.
    
        SkwishHttpServer server = SkwishHttpServer.newInstance(8880);
    
        SkwishHttpServer server = SkwishHttpServer.newDebugInstance(8880);
    
        SkwishHttpMountPoint mountPoint = server.getSkwishMountPoint("/skwish-root/", true);
        // suppose you already have a reference to the store
        SegmentStore store = ..
        mountPoint.mapRelativeUriToSkwish("MyStore", store);
        mountPoint.mapRelativeUriToSkwish("MyStore", <path-to-store>);
        server.start();
        http://<server-name>/skwish-root/MyStore?id=0
        http://<server-name>/skwish-root/MyStore?id=0&ct=text/html
        http://<server-name>/skwish-root/MyStore?id=0&tid=0
| 
 | ||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||