1 package com.atlassian.activeobjects.internal;
2
3 /**
4 * Types of data sources that active objects plugin can use
5 */
6 public enum DataSourceType {
7 /**
8 * The data source comes from the configured {@code com.atlassian.sal.api.sql.DataSourceProvider}
9 * provided by the host application.
10 */
11 APPLICATION,
12
13 /**
14 * The data source is an HSQL database 'somewhere' in the home directory of the application
15 */
16 HSQLDB
17 }