Codota Logo
EDIConfigDigester.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.milyn.edisax.model.EDIConfigDigester
constructor

Best Java code snippets using org.milyn.edisax.model.EDIConfigDigester.<init> (Showing top 12 results out of 315)

  • Common ways to obtain EDIConfigDigester
private void myMethod () {
EDIConfigDigester e =
  • Codota IconURI uRI;URI resourceURI;new EDIConfigDigester(uRI, URIResourceLocator.extractBaseURI(resourceURI))
  • Codota IconURI modelURI;URI importBaseURI;new EDIConfigDigester(modelURI, importBaseURI)
  • Smart code suggestions by Codota
}
origin: org.milyn/milyn-edisax-parser

/**
 * Digest the XML edi-message-mapping configuration stream.
 * @param stream the edi-message-mapping stream.
 * @return the {@link org.milyn.edisax.model.internal.Edimap}.
 * @throws IOException Error parsing the XML stream.
 * @throws SAXException Error parsing the XML stream.
 * @throws EDIConfigurationException Multiple or no namespaces in edi-message-mapping.
 */
public static Edimap digestConfig(InputStream stream) throws IOException, SAXException, EDIConfigurationException {
  return new EDIConfigDigester().digestEDIConfig(stream);
}
 
origin: smooks/smooks

/**
 * Digest the XML edi-message-mapping configuration stream.
 * @param stream the edi-message-mapping stream.
 * @return the {@link org.milyn.edisax.model.internal.Edimap}.
 * @throws IOException Error parsing the XML stream.
 * @throws SAXException Error parsing the XML stream.
 * @throws EDIConfigurationException Multiple or no namespaces in edi-message-mapping.
 */
public static Edimap digestConfig(InputStream stream) throws IOException, SAXException, EDIConfigurationException {
  return new EDIConfigDigester().digestEDIConfig(stream);
}
 
origin: org.virtuslab/milyn-edisax-parser

/**
 * Digest the XML edi-message-mapping configuration stream.
 * @param stream the edi-message-mapping stream.
 * @return the {@link org.milyn.edisax.model.internal.Edimap}.
 * @throws IOException Error parsing the XML stream.
 * @throws SAXException Error parsing the XML stream.
 * @throws EDIConfigurationException Multiple or no namespaces in edi-message-mapping.
 */
public static Edimap digestConfig(InputStream stream) throws IOException, SAXException, EDIConfigurationException {
  return new EDIConfigDigester().digestEDIConfig(stream);
}
 
origin: org.milyn/milyn-smooks-all

/**
 * Digest the XML edi-message-mapping configuration stream.
 * @param stream the edi-message-mapping stream.
 * @return the {@link org.milyn.edisax.model.internal.Edimap}.
 * @throws IOException Error parsing the XML stream.
 * @throws SAXException Error parsing the XML stream.
 * @throws EDIConfigurationException Multiple or no namespaces in edi-message-mapping.
 */
public static Edimap digestConfig(InputStream stream) throws IOException, SAXException, EDIConfigurationException {
  return new EDIConfigDigester().digestEDIConfig(stream);
}
 
origin: org.milyn/milyn-edisax-parser

/**
 * Set the edifact edimap from the mapping model InputStream.
 * @throws org.milyn.edisax.EDIParseException is thrown when EdifactModel is unable to initialize edimap.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when edi-message-mapping contains multiple or no namespace declaration.
 * @throws java.io.IOException is thrown when error occurs when parsing edi-message-mapping.
 */
private synchronized void parseSequence() throws EDIConfigurationException, IOException, SAXException {
  if(edimap != null) {
    return;
  }
  //To prevent circular dependency the name/url of all imported urls are stored in a dependency tree.
  //If a name/url already exists in a parent node, we have a circular dependency.
  DependencyTree<String> tree = new DependencyTree<String>();
  EDIConfigDigester digester = new EDIConfigDigester(modelURI, importBaseURI);
  edimap = digester.digestEDIConfig(new StringReader(mappingConfig));
  description = edimap.getDescription();
  importFiles(tree.getRoot(), edimap, tree);
}
origin: smooks/smooks

/**
 * Set the edifact edimap from the mapping model InputStream.
 * @throws org.milyn.edisax.EDIParseException is thrown when EdifactModel is unable to initialize edimap.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when edi-message-mapping contains multiple or no namespace declaration.
 * @throws java.io.IOException is thrown when error occurs when parsing edi-message-mapping.
 */
private synchronized void parseSequence() throws EDIConfigurationException, IOException, SAXException {
  if(edimap != null) {
    return;
  }
  //To prevent circular dependency the name/url of all imported urls are stored in a dependency tree.
  //If a name/url already exists in a parent node, we have a circular dependency.
  DependencyTree<String> tree = new DependencyTree<String>();
  EDIConfigDigester digester = new EDIConfigDigester(modelURI, importBaseURI);
  edimap = digester.digestEDIConfig(new StringReader(mappingConfig));
  description = edimap.getDescription();
  importFiles(tree.getRoot(), edimap, tree);
}
origin: org.milyn/milyn-smooks-all

/**
 * Set the edifact edimap from the mapping model InputStream.
 * @throws org.milyn.edisax.EDIParseException is thrown when EdifactModel is unable to initialize edimap.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when edi-message-mapping contains multiple or no namespace declaration.
 * @throws java.io.IOException is thrown when error occurs when parsing edi-message-mapping.
 */
private synchronized void parseSequence() throws EDIConfigurationException, IOException, SAXException {
  if(edimap != null) {
    return;
  }
  //To prevent circular dependency the name/url of all imported urls are stored in a dependency tree.
  //If a name/url already exists in a parent node, we have a circular dependency.
  DependencyTree<String> tree = new DependencyTree<String>();
  EDIConfigDigester digester = new EDIConfigDigester(modelURI, importBaseURI);
  edimap = digester.digestEDIConfig(new StringReader(mappingConfig));
  description = edimap.getDescription();
  importFiles(tree.getRoot(), edimap, tree);
}
origin: org.virtuslab/milyn-edisax-parser

/**
 * Set the edifact edimap from the mapping model InputStream.
 * @throws org.milyn.edisax.EDIParseException is thrown when EdifactModel is unable to initialize edimap.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when edi-message-mapping contains multiple or no namespace declaration.
 * @throws java.io.IOException is thrown when error occurs when parsing edi-message-mapping.
 */
private synchronized void parseSequence() throws EDIConfigurationException, IOException, SAXException {
  if(edimap != null) {
    return;
  }
  //To prevent circular dependency the name/url of all imported urls are stored in a dependency tree.
  //If a name/url already exists in a parent node, we have a circular dependency.
  DependencyTree<String> tree = new DependencyTree<String>();
  EDIConfigDigester digester = new EDIConfigDigester(modelURI, importBaseURI);
  edimap = digester.digestEDIConfig(new StringReader(mappingConfig));
  description = edimap.getDescription();
  importFiles(tree.getRoot(), edimap, tree);
}
origin: org.virtuslab/milyn-edisax-parser

EDIConfigDigester digester = new EDIConfigDigester(importUri, URIResourceLocator.extractBaseURI(importUri));
origin: org.milyn/milyn-smooks-all

EDIConfigDigester digester = new EDIConfigDigester(importUri, URIResourceLocator.extractBaseURI(importUri));
origin: smooks/smooks

EDIConfigDigester digester = new EDIConfigDigester(importUri, URIResourceLocator.extractBaseURI(importUri));
origin: org.milyn/milyn-edisax-parser

EDIConfigDigester digester = new EDIConfigDigester(importUri, URIResourceLocator.extractBaseURI(importUri));
org.milyn.edisax.modelEDIConfigDigester<init>

Javadoc

Public default Constructor.

Popular methods of EDIConfigDigester

  • assertValidXSD
    Assert that schema used for validation are valid, i.e. the schema is either edi-message-mapping-1.0
  • digestComponent
    Digests attributes and child elements of Component element.
  • digestDelimiters
    Digest attributes of Delimiter element and populate Delimiter.
  • digestDescription
    Digest attributes of Description element and populate Description.
  • digestEDIConfig
  • digestField
    Digests attributes and child elements of Field element.
  • digestImport
    Digest attributes of Import element and populate Import.
  • digestParameters
    Digests parameters from parameters attribute and insertsthe parameters into the valueNode. If first
  • digestSegment
    Digests attributes and child elements of Segment element.
  • digestSegmentGroup
  • digestSegments
    Digest attributes and child elements of Segments element. Populates Segments.
  • digestXSDValidatedConfig
    Digest child elements of edimap.
  • digestSegments,
  • digestXSDValidatedConfig,
  • getAttributeValue,
  • getNodeValue,
  • getNodeValueAsBoolean,
  • getNodeValueAsInteger,
  • retrieveNamespace,
  • setValuesForComponent,
  • setValuesForField

Popular in Java

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • setContentView (Activity)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Dictionary (java.util)
    The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to valu
  • List (java.util)
    A List is a collection which maintains an ordering for its elements. Every element in the List has a
  • JComboBox (javax.swing)
  • LogFactory (org.apache.commons.logging)
    A minimal incarnation of Apache Commons Logging's LogFactory API, providing just the common Log look
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