Tabnine Logo
JaxwsModule.getJaxwsContext
Code IndexAdd Tabnine to your IDE (free)

How to use
getJaxwsContext
method
in
com.webcohesion.enunciate.modules.jaxws.JaxwsModule

Best Java code snippets using com.webcohesion.enunciate.modules.jaxws.JaxwsModule.getJaxwsContext (Showing top 16 results out of 315)

origin: stoicflame/enunciate

if (this.jaxwsModule != null) {
 HashMap<String, WebFault> allFaults = new HashMap<String, WebFault>();
 for (WsdlInfo wsdlInfo : this.jaxwsModule.getJaxwsContext().getWsdls().values()) {
  for (EndpointInterface ei : wsdlInfo.getEndpointInterfaces()) {
   String pckg = ei.getPackage().getQualifiedName().toString();
origin: com.webcohesion.enunciate/enunciate-csharp-xml-client

if (this.jaxwsModule != null) {
 HashMap<String, WebFault> allFaults = new HashMap<String, WebFault>();
 for (WsdlInfo wsdlInfo : this.jaxwsModule.getJaxwsContext().getWsdls().values()) {
  for (EndpointInterface ei : wsdlInfo.getEndpointInterfaces()) {
   String pckg = ei.getPackage().getQualifiedName().toString();
origin: stoicflame/enunciate

protected File copyResources() {
 File resourcesDir = getResourcesDir();
 resourcesDir.mkdirs();
 try {
  if (this.jaxwsModule != null) {
   for (WsdlInfo wsdlInfo : this.jaxwsModule.getJaxwsContext().getWsdls().values()) {
    if (wsdlInfo.getWsdlFile() != null) {
     wsdlInfo.getWsdlFile().writeTo(resourcesDir);
    }
   }
  }
  for (SchemaInfo schemaInfo : this.jaxbModule.getJaxbContext().getSchemas().values()) {
   if (schemaInfo.getSchemaFile() != null) {
    schemaInfo.getSchemaFile().writeTo(resourcesDir);
   }
  }
 }
 catch (IOException e) {
  throw new EnunciateException(e);
 }
 return resourcesDir;
}
origin: com.webcohesion.enunciate/enunciate-java-xml-client

protected File copyResources() {
 File resourcesDir = getResourcesDir();
 resourcesDir.mkdirs();
 try {
  if (this.jaxwsModule != null) {
   for (WsdlInfo wsdlInfo : this.jaxwsModule.getJaxwsContext().getWsdls().values()) {
    if (wsdlInfo.getWsdlFile() != null) {
     wsdlInfo.getWsdlFile().writeTo(resourcesDir);
    }
   }
  }
  for (SchemaInfo schemaInfo : this.jaxbModule.getJaxbContext().getSchemas().values()) {
   if (schemaInfo.getSchemaFile() != null) {
    schemaInfo.getSchemaFile().writeTo(resourcesDir);
   }
  }
 }
 catch (IOException e) {
  throw new EnunciateException(e);
 }
 return resourcesDir;
}
origin: stoicflame/enunciate

Collection<WsdlInfo> wsdls = new ArrayList<WsdlInfo>();
if (this.jaxwsModule != null) {
 wsdls = this.jaxwsModule.getJaxwsContext().getWsdls().values();
origin: com.webcohesion.enunciate/enunciate-csharp-xml-client

Collection<WsdlInfo> wsdls = new ArrayList<WsdlInfo>();
if (this.jaxwsModule != null) {
 wsdls = this.jaxwsModule.getJaxwsContext().getWsdls().values();
origin: stoicflame/enunciate

if (this.jaxwsModule != null && this.jaxwsModule.getJaxwsContext() != null) {
 for (EndpointInterface ei : this.jaxwsModule.getJaxwsContext().getEndpointInterfaces()) {
  for (WebMethod method : ei.getWebMethods()) {
   if (method.getAnnotation(DocumentationExample.class) != null && !method.getAnnotation(DocumentationExample.class).exclude()) {
origin: com.webcohesion.enunciate/enunciate-csharp-xml-client

if (this.jaxwsModule != null && this.jaxwsModule.getJaxwsContext() != null) {
 for (EndpointInterface ei : this.jaxwsModule.getJaxwsContext().getEndpointInterfaces()) {
  for (WebMethod method : ei.getWebMethods()) {
   if (method.getAnnotation(DocumentationExample.class) != null && !method.getAnnotation(DocumentationExample.class).exclude()) {
origin: stoicflame/enunciate

for (WsdlInfo wsdlInfo : this.jaxwsModule.getJaxwsContext().getWsdls().values()) {
 for (EndpointInterface ei : wsdlInfo.getEndpointInterfaces()) {
  if (facetFilter.accept(ei)) {
for (WsdlInfo wsdlInfo : this.jaxwsModule.getJaxwsContext().getWsdls().values()) {
 if (wsdlInfo.getWsdlFile() == null) {
  throw new EnunciateException("WSDL " + wsdlInfo.getId() + " doesn't have a filename.");
origin: com.webcohesion.enunciate/enunciate-java-xml-client

for (WsdlInfo wsdlInfo : this.jaxwsModule.getJaxwsContext().getWsdls().values()) {
 for (EndpointInterface ei : wsdlInfo.getEndpointInterfaces()) {
  if (facetFilter.accept(ei)) {
for (WsdlInfo wsdlInfo : this.jaxwsModule.getJaxwsContext().getWsdls().values()) {
 if (wsdlInfo.getWsdlFile() == null) {
  throw new EnunciateException("WSDL " + wsdlInfo.getId() + " doesn't have a filename.");
origin: stoicflame/enunciate

ns2wsdl = this.jaxwsModule.getJaxwsContext().getWsdls();
origin: com.webcohesion.enunciate/enunciate-idl

ns2wsdl = this.jaxwsModule.getJaxwsContext().getWsdls();
origin: stoicflame/enunciate

WebMethod example = null;
if (this.jaxwsModule != null) {
 for (EndpointInterface ei : this.jaxwsModule.getJaxwsContext().getEndpointInterfaces()) {
  for (WebMethod method : ei.getWebMethods()) {
   if (method.getAnnotation(DocumentationExample.class) != null && !method.getAnnotation(DocumentationExample.class).exclude()) {
origin: stoicflame/enunciate

protected boolean usesUnmappableElements() {
 boolean usesUnmappableElements = false;
 if (this.jaxwsModule != null && this.jaxwsModule.getJaxwsContext() != null) {
  for (EndpointInterface ei : this.jaxwsModule.getJaxwsContext().getEndpointInterfaces()) {
   Map<String, javax.lang.model.element.Element> paramsByName = new HashMap<String, javax.lang.model.element.Element>();
   for (WebMethod webMethod : ei.getWebMethods()) {
origin: com.webcohesion.enunciate/enunciate-java-xml-client

WebMethod example = null;
if (this.jaxwsModule != null) {
 for (EndpointInterface ei : this.jaxwsModule.getJaxwsContext().getEndpointInterfaces()) {
  for (WebMethod method : ei.getWebMethods()) {
   if (method.getAnnotation(DocumentationExample.class) != null && !method.getAnnotation(DocumentationExample.class).exclude()) {
origin: com.webcohesion.enunciate/enunciate-csharp-xml-client

protected boolean usesUnmappableElements() {
 boolean usesUnmappableElements = false;
 if (this.jaxwsModule != null && this.jaxwsModule.getJaxwsContext() != null) {
  for (EndpointInterface ei : this.jaxwsModule.getJaxwsContext().getEndpointInterfaces()) {
   Map<String, javax.lang.model.element.Element> paramsByName = new HashMap<String, javax.lang.model.element.Element>();
   for (WebMethod webMethod : ei.getWebMethods()) {
com.webcohesion.enunciate.modules.jaxwsJaxwsModulegetJaxwsContext

Popular methods of JaxwsModule

  • addReferencedDataTypeDefinitions
  • addReferencedTypeDefinitions
  • getDataTypeDetectionStrategy
  • getSunJaxwsXmlFile
  • isAggressiveWebMethodExcludePolicy
  • isEndpointInterface
    A quick check to see if a declaration is an endpoint interface.
  • isUseSourceParameterNames
  • resolveFile

Popular in Java

  • Finding current android device location
  • getSystemService (Context)
  • runOnUiThread (Activity)
  • onRequestPermissionsResult (Fragment)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top Sublime Text 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