]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db/src/org/simantics/db/SessionManager.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / SessionManager.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.db;\r
13 \r
14 import java.io.IOException;\r
15 \r
16 import org.simantics.db.authentication.UserAuthenticationAgent;\r
17 import org.simantics.db.event.SessionListener;\r
18 import org.simantics.db.exception.DatabaseException;\r
19 \r
20 /**\r
21  * @author Tuukka Lehtonen\r
22  * @see Session\r
23  * @see SessionListener\r
24  */\r
25 public interface SessionManager {\r
26 \r
27     void addSessionListener(SessionListener listener);\r
28     void removeSessionListener(SessionListener listener);\r
29 \r
30     SessionErrorHandler getErrorHandler();\r
31     void setErrorHandler(SessionErrorHandler errorHandler);\r
32 \r
33     Session createSession(SessionReference sessionReference, UserAuthenticationAgent authAgent) throws DatabaseException, IOException;\r
34     void shutdown(Session session, Throwable cause);\r
35         Database getDatabase();\r
36 \r
37 }\r