All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.edisax.registry.MappingsRegistry Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
/*
 * Milyn - Copyright (C) 2006 - 2011
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License (version 2.1) as published by the Free Software
 * Foundation.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * See the GNU Lesser General Public License for more details:
 * http://www.gnu.org/licenses/lgpl.txt
 */
package org.milyn.edisax.registry;

import java.io.IOException;

import org.milyn.edisax.EDIConfigurationException;
import org.milyn.edisax.model.EdifactModel;
import org.milyn.edisax.model.internal.Delimiters;
import org.xml.sax.SAXException;

/**
 * Registry that stores EDIFACT Mapping models and load them from the 
 * classpath on-demand
 * 
 * @author zubairov
 *
 */
public interface MappingsRegistry {

	/**
	 * Returns an {@link EdifactModel} based on the message name and delimiters that should be used to parse message name.
	 * 
	 * @param messageName
	 * @param delimiters
	 * @return
	 * @throws SAXException 
	 */
	EdifactModel getMappingModel(String messageName, Delimiters delimiters) throws EDIConfigurationException, SAXException, IOException;
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy