]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.application/src/org/simantics/application/db/DatabaseUtils.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.application / src / org / simantics / application / db / DatabaseUtils.java
index b65ff0c1286eae275bdb0e76c1ae8d82a918ffbd..35a2077afdc92e18495e52bd85ece9afb7b337f4 100644 (file)
@@ -1,49 +1,49 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.application.db;\r
-\r
-import java.util.Properties;\r
-\r
-import org.simantics.db.Driver;\r
-import org.simantics.db.Manager;\r
-import org.simantics.db.Session;\r
-import org.simantics.db.services.GlobalServiceInitializer;\r
-\r
-public final class DatabaseUtils {\r
-\r
-//    public static Session connect(String host, int port) throws Exception {\r
-//        return connect(new ServerAddress(host, port));\r
-//    }\r
-//\r
-//    public static Session connect(String host, int port, String dbid) throws Exception {\r
-//        return connect(new ServerAddress(host, port, dbid));\r
-//    }\r
-\r
-    public static Session connect(String addr) throws Exception {\r
-        // Try to load and register the Driver instance with the driver manager\r
-        Class.forName("org.simantics.db.procore.ProCoreDriver");\r
-        Driver driver = Manager.getDriver("procore");\r
-\r
-        // Connect to the server at the specified host and credentials.\r
-        // Note that we normally user authentication agent for user identification.\r
-        Properties props = new Properties();\r
-        props.setProperty("user", "Default User");\r
-        props.setProperty("password", "");\r
-\r
-        Session session = driver.getSession(addr, props);\r
-\r
-        new GlobalServiceInitializer().initialize(session);\r
-\r
-        return session;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.application.db;
+
+import java.util.Properties;
+
+import org.simantics.db.Driver;
+import org.simantics.db.Manager;
+import org.simantics.db.Session;
+import org.simantics.db.services.GlobalServiceInitializer;
+
+public final class DatabaseUtils {
+
+//    public static Session connect(String host, int port) throws Exception {
+//        return connect(new ServerAddress(host, port));
+//    }
+//
+//    public static Session connect(String host, int port, String dbid) throws Exception {
+//        return connect(new ServerAddress(host, port, dbid));
+//    }
+
+    public static Session connect(String addr) throws Exception {
+        // Try to load and register the Driver instance with the driver manager
+        Class.forName("org.simantics.db.procore.ProCoreDriver");
+        Driver driver = Manager.getDriver("procore");
+
+        // Connect to the server at the specified host and credentials.
+        // Note that we normally user authentication agent for user identification.
+        Properties props = new Properties();
+        props.setProperty("user", "Default User");
+        props.setProperty("password", "");
+
+        Session session = driver.getSession(addr, props);
+
+        new GlobalServiceInitializer().initialize(session);
+
+        return session;
+    }
+
+}