Tabnine Logo
Environment.getAddressingContext
Code IndexAdd Tabnine to your IDE (free)

How to use
getAddressingContext
method
in
org.apache.muse.core.Environment

Best Java code snippets using org.apache.muse.core.Environment.getAddressingContext (Showing top 3 results out of 315)

origin: org.n52.amused/amused-osgi-core

public Bundle getDelegateBundle(){
  Environment env = getEnvironment();
  EndpointReference epr = env.getAddressingContext().getToAddress();
  String address = epr.getAddress().toString();
  
  Iterator keys = contextToBundleMap.keySet().iterator();
  while(keys.hasNext()){
    String currentKey = (String)keys.next();
    if(address.endsWith(currentKey)){
      return (Bundle)contextToBundleMap.get(currentKey);
    }
  }
  
  return null;
}
origin: org.n52.amused/amused-core

MessageHeaders wsa = env.getAddressingContext();
origin: org.n52.amused/amused-core

MessageHeaders wsa = getEnvironment().getAddressingContext();
String action = wsa.getAction();
org.apache.muse.coreEnvironmentgetAddressingContext

Popular methods of Environment

  • getDocument
    This is a convenience method that loads an InputStream using getDataResourceStream() and turns it in
  • createRelativePath
    Merges the two paths to create a valid version of the second path. This method should be used when y
  • getClassLoader
  • getRealDirectory
  • addAddressingContext
    Records the WS-Addressing data for the current request.
  • getDefaultURI
  • getDeploymentEPR
  • getSoapClient
  • removeAddressingContext
    Removes the context object for the current request.

Popular in Java

  • Making http post requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSharedPreferences (Context)
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Top Vim plugins
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