blob: eab20c598c15588247f334bcec95c3c8a22dab4f [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
package org.eclipse.mdm.api.base;
import java.util.Map;
import org.eclipse.mdm.api.base.model.BaseEntityFactory;
/**
* Takes connection parameters and produces a corresponding base application
* context.
*
* @param <T> Type of the connected entity manager.
* @since 1.0.0
*/
public interface BaseApplicationContextFactory<T extends BaseApplicationContext<? extends BaseEntityFactory, ? extends BaseEntityManager>> {
/**
* Takes given connection parameters and creates a new context, which is
* permanently connected with configured data source.
*
* @param connectionParameters The connection parameters.
* @return The connected context is returned.
* @throws ConnectionException Thrown if unable to connect to a data source.
*/
T connect(Map<String, String> connectionParameters) throws ConnectionException;
}