Tabnine Logo
JAXBModelBuilder.bind
Code IndexAdd Tabnine to your IDE (free)

How to use
bind
method
in
com.sun.tools.ws.processor.modeler.wsdl.JAXBModelBuilder

Best Java code snippets using com.sun.tools.ws.processor.modeler.wsdl.JAXBModelBuilder.bind (Showing top 4 results out of 315)

origin: org.glassfish.metro/webservices-tools

protected void buildJAXBModel(WSDLDocument wsdlDocument) {
  JAXBModelBuilder tempJaxbModelBuilder = new JAXBModelBuilder(options, classNameCollector, forest, errReceiver);
  //set the java package where wsdl artifacts will be generated
  //if user provided package name  using -p switch (or package property on wsimport ant task)
  //ignore the package customization in the wsdl and schema bidnings
  //formce the -p option only in the first pass
  if (explicitDefaultPackage != null) {
    tempJaxbModelBuilder.getJAXBSchemaCompiler().forcePackageName(options.defaultPackage);
  } else {
    options.defaultPackage = getJavaPackage();
  }
  //create pseudo schema for async operations(if any) response bean
  List<InputSource> schemas = PseudoSchemaBuilder.build(this, options, errReceiver);
  for (InputSource schema : schemas) {
    tempJaxbModelBuilder.getJAXBSchemaCompiler().parseSchema(schema);
  }
  tempJaxbModelBuilder.bind();
  this.jaxbModelBuilder = tempJaxbModelBuilder;
}
origin: javaee/metro-jax-ws

protected void buildJAXBModel(WSDLDocument wsdlDocument) {
  JAXBModelBuilder tempJaxbModelBuilder = new JAXBModelBuilder(options, classNameCollector, forest, errReceiver);
  //set the java package where wsdl artifacts will be generated
  //if user provided package name  using -p switch (or package property on wsimport ant task)
  //ignore the package customization in the wsdl and schema bidnings
  //formce the -p option only in the first pass
  if (explicitDefaultPackage != null) {
    tempJaxbModelBuilder.getJAXBSchemaCompiler().forcePackageName(options.defaultPackage);
  } else {
    options.defaultPackage = getJavaPackage();
  }
  //create pseudo schema for async operations(if any) response bean
  List<InputSource> schemas = PseudoSchemaBuilder.build(this, options, errReceiver);
  for (InputSource schema : schemas) {
    tempJaxbModelBuilder.getJAXBSchemaCompiler().parseSchema(schema);
  }
  tempJaxbModelBuilder.bind();
  this.jaxbModelBuilder = tempJaxbModelBuilder;
}
origin: com.sun.xml.ws/jaxws-tools

protected void buildJAXBModel(WSDLDocument wsdlDocument) {
  JAXBModelBuilder tempJaxbModelBuilder = new JAXBModelBuilder(options, classNameCollector, forest, errReceiver);
  //set the java package where wsdl artifacts will be generated
  //if user provided package name  using -p switch (or package property on wsimport ant task)
  //ignore the package customization in the wsdl and schema bidnings
  //formce the -p option only in the first pass
  if (explicitDefaultPackage != null) {
    tempJaxbModelBuilder.getJAXBSchemaCompiler().forcePackageName(options.defaultPackage);
  } else {
    options.defaultPackage = getJavaPackage();
  }
  //create pseudo schema for async operations(if any) response bean
  List<InputSource> schemas = PseudoSchemaBuilder.build(this, options, errReceiver);
  for (InputSource schema : schemas) {
    tempJaxbModelBuilder.getJAXBSchemaCompiler().parseSchema(schema);
  }
  tempJaxbModelBuilder.bind();
  this.jaxbModelBuilder = tempJaxbModelBuilder;
}
origin: javaee/metro-jax-ws

protected void buildJAXBModel(WSDLDocument wsdlDocument) {
  JAXBModelBuilder tempJaxbModelBuilder = new JAXBModelBuilder(options, classNameCollector, forest, errReceiver);
  //set the java package where wsdl artifacts will be generated
  //if user provided package name  using -p switch (or package property on wsimport ant task)
  //ignore the package customization in the wsdl and schema bidnings
  //formce the -p option only in the first pass
  if (explicitDefaultPackage != null) {
    tempJaxbModelBuilder.getJAXBSchemaCompiler().forcePackageName(options.defaultPackage);
  } else {
    options.defaultPackage = getJavaPackage();
  }
  //create pseudo schema for async operations(if any) response bean
  List<InputSource> schemas = PseudoSchemaBuilder.build(this, options, errReceiver);
  for (InputSource schema : schemas) {
    tempJaxbModelBuilder.getJAXBSchemaCompiler().parseSchema(schema);
  }
  tempJaxbModelBuilder.bind();
  this.jaxbModelBuilder = tempJaxbModelBuilder;
}
com.sun.tools.ws.processor.modeler.wsdlJAXBModelBuilderbind

Popular methods of JAXBModelBuilder

  • <init>
  • getElementTypeAndAnn
  • getJAXBModel
  • getJAXBSchemaCompiler
  • getJAXBType
  • internalBuildJAXBModel
    Builds model from WSDL document. Model contains abstraction which is used by the generators to gener

Popular in Java

  • Reactive rest calls using spring rest template
  • startActivity (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • getResourceAsStream (ClassLoader)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • 21 Best IntelliJ Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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