protected void startParsing(final Attributes attrs) throws SAXException
{
sourceDomain = attrs.getValue(getUri(), "source-domain");
if (sourceDomain == null)
{
throw new ParseException("Required attribute 'source-domain' is missing.", getLocator());
}
sourceName = attrs.getValue(getUri(), "source-name");
if (sourceName == null)
{
throw new ParseException("Required attribute 'source-name' is missing.", getLocator());
}
targetDomain = attrs.getValue(getUri(), "target-domain");
if (targetDomain == null)
{
throw new ParseException("Required attribute 'target-domain' is missing.", getLocator());
}
targetName = attrs.getValue(getUri(), "target-name");
if (targetName == null)
{
throw new ParseException("Required attribute 'target-name' is missing.", getLocator());
}
final String mapperClass = attrs.getValue(getUri(), "concept-mapper");
if (mapperClass == null)
{