]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db/src/org/simantics/db/service/SerialisationSupport.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / service / SerialisationSupport.java
diff --git a/bundles/org.simantics.db/src/org/simantics/db/service/SerialisationSupport.java b/bundles/org.simantics.db/src/org/simantics/db/service/SerialisationSupport.java
new file mode 100644 (file)
index 0000000..80ba536
--- /dev/null
@@ -0,0 +1,38 @@
+/*******************************************************************************\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.db.service;\r
+\r
+import org.simantics.db.Resource;\r
+import org.simantics.db.ResourceSerializer;\r
+import org.simantics.db.exception.DatabaseException;\r
+\r
+public interface SerialisationSupport {\r
+\r
+    /**\r
+     * Get a ResourceSerializer for this session which can be used to\r
+     * serialize Resource instances to string and back.\r
+     */\r
+    ResourceSerializer getResourceSerializer();\r
+\r
+    Resource getResource(long randomAccessId) throws DatabaseException;\r
+    Resource getResource(int transientId) throws DatabaseException;\r
+    \r
+    int getTransientId(Resource resource) throws DatabaseException;\r
+    long getRandomAccessId(Resource resource) throws DatabaseException;\r
+    \r
+    int getTransientId(long randomAccessId) throws DatabaseException;\r
+    long getRandomAccessId(int transientId) throws DatabaseException;\r
+    \r
+    ResourceUID getUID(Resource resource) throws DatabaseException;\r
+    Resource getResource(ResourceUID uid) throws DatabaseException;\r
+        \r
+}\r