Start supporting mounting of XML with FS.
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / spi / ProvidedContent.java
index d9fc781d0317878d1ba0be628e080e9ac112c30d..d483e7fcc7f9e91047e0739258f11cf4064621df 100644 (file)
@@ -6,4 +6,8 @@ public interface ProvidedContent extends Content {
        ProvidedSession getSession();
 
        ContentProvider getProvider();
+
+       default ProvidedContent getMountPoint(String relativePath) {
+               throw new UnsupportedOperationException("This content doe not support mount");
+       }
 }