Tabnine Logo
Response.canHandle
Code IndexAdd Tabnine to your IDE (free)

How to use
canHandle
method
in
org.geoserver.ows.Response

Best Java code snippets using org.geoserver.ows.Response.canHandle (Showing top 6 results out of 315)

origin: geoserver/geoserver

public boolean canHandle(Operation operation) {
  return delegate.canHandle(operation);
}
origin: geoserver/geoserver

  || !response.canHandle(opDescriptor)) {
itr.remove();
origin: org.geoserver/gs-wfs

@Override
public boolean canHandle(Operation operation) {
  return response.canHandle(operation);
}
origin: org.geoserver/xslt

private Response findSourceResponse(Operation sourceOperation, TransformInfo info) {
  for (Response r : responses) {
    if (r.getOutputFormats().contains(info.getSourceFormat())
        && r.canHandle(sourceOperation)) {
      return r;
    }
  }
  return null;
}
origin: org.geoserver/gwc

final Class<?> webMapClass = metaTileMap.getClass();
for (Response r : extensions) {
  if (r.getBinding().isAssignableFrom(webMapClass) && r.canHandle(operation)) {
    synchronized (cachedTileEncoders) {
      cachedTileEncoders.put(mimeType, r);
origin: org.geoserver/gs-gwc

final Class<?> webMapClass = metaTileMap.getClass();
for (Response r : extensions) {
  if (r.getBinding().isAssignableFrom(webMapClass) && r.canHandle(operation)) {
    synchronized (cachedTileEncoders) {
      cachedTileEncoders.put(mimeType, r);
org.geoserver.owsResponsecanHandle

Javadoc

Determines if the response can handle the operation being performed.

This method is called before #write(Object,OutputStream,Operation).

Subclasses should override this method to perform additional checks against the operation being performed. Example might be checking the version of the service.

Popular methods of Response

  • getBinding
  • getMimeType
  • getOutputFormats
  • write
  • getAttachmentFileName
  • getCharset
  • getHeaders
  • getPreferredDisposition

Popular in Java

  • Updating database using SQL prepared statement
  • setScale (BigDecimal)
  • startActivity (Activity)
  • addToBackStack (FragmentTransaction)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now