Tabnine Logo
SchemaBinding.setIgnoreUnresolvedFieldOrClass
Code IndexAdd Tabnine to your IDE (free)

How to use
setIgnoreUnresolvedFieldOrClass
method
in
org.jboss.xb.binding.sunday.unmarshalling.SchemaBinding

Best Java code snippets using org.jboss.xb.binding.sunday.unmarshalling.SchemaBinding.setIgnoreUnresolvedFieldOrClass (Showing top 2 results out of 315)

origin: org.jboss.ws.native/jbossws-native-core

/**
* Creates and initializes an instance of SchemaBinding
*/
public SchemaBinding buildSchemaBinding(XSModel model, JavaWsdlMapping wsdlMapping)
{
 JBossEntityResolver resolver = new JBossWSEntityResolver(ClassLoaderProvider.getDefaultProvider().getServerJAXRPCIntegrationClassLoader());
 SchemaBinding schemaBinding = XsdBinder.bind(model, new DefaultSchemaResolver(resolver));
 schemaBinding.setIgnoreLowLine(false);
 schemaBinding.setIgnoreUnresolvedFieldOrClass(false);
 schemaBinding.setUnmarshalListsToArrays(true); // note: default jaxb2.0 is false!
 schemaBinding.setSimpleContentProperty("_value");
 schemaBinding.setUseNoArgCtorIfFound(true);
 schemaBinding.setReplacePropertyRefs(false);
 if (wsdlMapping != null)
 {
   bindSchemaToJava(schemaBinding, wsdlMapping);
 }
 return schemaBinding;
}
origin: jboss/jbossxb

schema.setIgnoreUnresolvedFieldOrClass(schemaBindings.isIgnoreUnresolvedFieldOrClass());
org.jboss.xb.binding.sunday.unmarshallingSchemaBindingsetIgnoreUnresolvedFieldOrClass

Javadoc

If a field is not found in the parent class to set child value on or a class an element is bound to an exception will be thrown if this property is false. Otherwise, the process will just go on (the default for now).

Popular methods of SchemaBinding

  • getType
  • setReplacePropertyRefs
  • addElement
  • addType
  • getElement
  • getElements
  • getPackageMetaData
  • setPackageMetaData
  • <init>
  • addElementParticle
  • addGroup
  • getElementParticle
  • addGroup,
  • getElementParticle,
  • getElementParticles,
  • getSchemaResolver,
  • getSimpleContentProperty,
  • getTypes,
  • getXopMarshaller,
  • getXopUnmarshaller,
  • isIgnoreLowLine

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (Timer)
  • getContentResolver (Context)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • 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
  • JFrame (javax.swing)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best IntelliJ 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