1 package com.atlassian.dbexporter.exporter;
2
3 import java.util.Map;
4
5 public interface DatabaseInformationReader {
6 /**
7 * Gets the database information as a Map of properties
8 *
9 * @return a map of properties
10 */
11 Map<String, String> get();
12 }