Class DescribeStoredQueriesResponseFactory
- Object
- 
- DescribeStoredQueriesResponseFactory
 
- 
- All Implemented Interfaces:
- WFSResponseFactory
 
 public class DescribeStoredQueriesResponseFactory extends Object implements WFSResponseFactory 
- 
- 
Constructor SummaryConstructors Constructor Description DescribeStoredQueriesResponseFactory()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanProcess(WFSOperationType operation)booleancanProcess(WFSRequest originatingRequest, String contentType)Indicates whether this factory is able to produce a parser that deals with the possible responses of the given WFS request.WFSResponsecreateResponse(WFSRequest request, HTTPResponse response)Creates a response for the given WFS request.List<String>getSupportedOutputFormats()booleanisAvailable()Indicates whether the factory instance is able to create parser instances.
 
- 
- 
- 
Method Detail- 
isAvailablepublic boolean isAvailable() Description copied from interface:WFSResponseFactoryIndicates whether the factory instance is able to create parser instances.- Specified by:
- isAvailablein interface- WFSResponseFactory
- Returns:
- trueif there's nothing preventing the creation of the parsers this factory should produce
 
 - 
canProcesspublic boolean canProcess(WFSRequest originatingRequest, String contentType) Description copied from interface:WFSResponseFactoryIndicates whether this factory is able to produce a parser that deals with the possible responses of the given WFS request.The decision may usually be made depending on the request type, ouput format, etc - Specified by:
- canProcessin interface- WFSResponseFactory
- Returns:
- trueif this factory can create a parser for the responses of the given request
 
 - 
canProcesspublic boolean canProcess(WFSOperationType operation) - Specified by:
- canProcessin interface- WFSResponseFactory
 
 - 
getSupportedOutputFormatspublic List<String> getSupportedOutputFormats() - Specified by:
- getSupportedOutputFormatsin interface- WFSResponseFactory
 
 - 
createResponsepublic WFSResponse createResponse(WFSRequest request, HTTPResponse response) throws IOException Description copied from interface:WFSResponseFactoryCreates a response for the given WFS request.- Specified by:
- createResponsein interface- WFSResponseFactory
- response- the handle to the response contents the WFS sent
- Returns:
- a WFSResponsethat can deal with the given request and response
- Throws:
- IOException
 
 
- 
 
-