001    /*
002     * mesopotamia @mesopotamia.version@
003     * Multilingual parser and repository. 
004     * Copyright (C) 2005  Hammurapi Group
005     *
006     * This program is free software; you can redistribute it and/or
007     * modify it under the terms of the GNU Lesser General Public
008     * License as published by the Free Software Foundation; either
009     * version 2 of the License, or (at your option) any later version.
010     *
011     * This program is distributed in the hope that it will be useful,
012     * but WITHOUT ANY WARRANTY; without even the implied warranty of
013     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014     * Lesser General Public License for more details.
015     *
016     * You should have received a copy of the GNU Lesser General Public
017     * License along with this library; if not, write to the Free Software
018     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
019     *
020     * URL: http://http://www.hammurapi.biz
021     * e-Mail: support@hammurapi.biz
022     */
023    package org.mesopotamia;
024    
025    import java.sql.SQLException;
026    
027    public class LoaderBase {
028    
029            protected RepositoryLanguage repoLanguage;
030            
031            /**
032             * Scan dependent loaders must set scan number in LOAD_LEVEL table 
033             */
034            protected boolean isScanDependent;
035    
036            protected LoaderEntry data;
037    
038            public LoaderBase(RepositoryLanguage repoLanguage, LoaderEntry data) {
039                    super();
040                    this.repoLanguage=repoLanguage;
041                    this.isScanDependent=data.isScanDependent();
042                    this.data = data;
043            }
044    
045            protected Integer storeErrorMessage(final int scanId, final int sourceUnitId, final Throwable e) throws SQLException {
046                    return new Integer(repoLanguage.getFactory().storeErrorMessage(
047                            scanId, 
048                            new Integer(sourceUnitId), 
049                            e));
050            }
051    
052    }