refs #3619
git-svn-id: https://www.simantics.org/svn/simantics/interoperability/trunk@25498
ac1ea38d-2e2b-0410-8846-
a27921b304fc
return null;\r
}\r
\r
+ @Override\r
+ public boolean isImmutable(final Resource resource) throws DatabaseException {\r
+ try {\r
+ return session.syncRequest(new Read<Boolean>() {\r
+ @Override\r
+ public Boolean perform(ReadGraph graph) throws DatabaseException {\r
+ return graph.isImmutable(resource);\r
+ }\r
+ });\r
+ } catch (DatabaseException e) {\r
+ throw new ServiceException(e);\r
+ }\r
+ }\r
+\r
}\r
return graph.getProvider();\r
}\r
\r
+ @Override\r
+ public boolean isImmutable(Resource resource) throws DatabaseException {\r
+ return graph.isImmutable(resource);\r
+ }\r
+\r
}\r