Codota Logo
ResolveParams.getMode
Code IndexAdd Codota to your IDE (free)

How to use
getMode
method
in
org.deegree.commons.tom.ResolveParams

Best Java code snippets using org.deegree.commons.tom.ResolveParams.getMode (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: deegree/deegree3

private static void exportResolveParameters( GetFeature getFeature, Map<String, String> kvp ) {
  ResolveParams resolveParams = getFeature.getResolveParams();
  if ( resolveParams != null ) {
    ResolveMode resolveMode = resolveParams.getMode();
    if ( resolveMode != null ) {
      kvp.put( "RESOLVE", resolveMode.name().toLowerCase() );
    }
    String resolveDepth = getFeature.getResolveParams().getDepth();
    if ( resolveDepth != null && !resolveDepth.equals( "" ) ) {
      kvp.put( "RESOLVEDEPTH", resolveDepth );
    }
    BigInteger resolveTimeout = getFeature.getResolveParams().getTimeout();
    if ( resolveTimeout != null ) {
      kvp.put( "RESOLVETIMEOUT", resolveTimeout.toString() );
    }
  }
}
origin: deegree/deegree3

public GmlXlinkOptions( ResolveParams params ) {
  if ( params.getDepth() != null ) {
    if ( "*".equals( params.getDepth() ) ) {
      resolveDepth = -1;
    } else {
      resolveDepth = parseInt( params.getDepth() );
    }
  } else {
    resolveDepth = 0;
  }
  this.currentLevel = 0;
  this.mode = params.getMode();
  if ( params.getTimeout() != null ) {
    remoteTimeoutInMilliseconds = params.getTimeout().longValue() * 1000;
  } else {
    remoteTimeoutInMilliseconds = 60 * 1000;
  }
}
origin: deegree/deegree3

if ( nextProperty != null ) {
  ResolveParams resolveParams = nextProperty.getResolveParams();
  if ( resolveParams.getMode() == null && resolveParams.getDepth() == null
     && resolveParams.getTimeout() == null ) {
    QName qname = nextProperty.getPropertyName().getAsQName();
origin: deegree/deegree3

PropertyName propName = (PropertyName) clause;
ResolveParams resolveParams = propName.getResolveParams();
if ( resolveParams.getDepth() != null || resolveParams.getMode() != null
   || resolveParams.getTimeout() != null ) {
  throw new OWSException( "GetFeatureWithLock does not support XlinkPropertyName",
org.deegree.commons.tomResolveParamsgetMode

Popular methods of ResolveParams

  • getDepth
  • getTimeout
  • <init>
  • setTimeout

Popular in Java

  • Making http post requests using okhttp
  • putExtra (Intent)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • onCreateOptionsMenu (Activity)
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • String (java.lang)
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Collectors (java.util.stream)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now