view src/main/java/de/intevation/lada/data/importer/Importer.java @ 366:567ce7697fc7 0.5

Code documentation.
author Raimund Renkert <rrenkert@intevation.de>
date Tue, 10 Sep 2013 15:55:54 +0200
parents e0bbb54f2f7c
children 183f8116d9a6
line wrap: on
line source
package de.intevation.lada.data.importer;

import java.util.List;
import java.util.Map;

import de.intevation.lada.auth.AuthenticationResponse;

/**
 * Defines the interface for data importer using authentication information.
 *
 * @author <a href="mailto:rrenkert@intevation.de">Raimund Renkert</a>
 */
public interface Importer
{
    public boolean importData(String content, AuthenticationResponse auth);
    public Map<String, List<ReportData>> getErrors();
    public Map<String, List<ReportData>> getWarnings();
    public void reset();
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)