]> git.argeo.org Git - lgpl/argeo-commons.git/blob - ProvidedContent.java
d2509a49d8a9c68642c3023b50ad8b3b90fb41de
[lgpl/argeo-commons.git] / ProvidedContent.java
1 package org.argeo.api.acr.spi;
2
3 import org.argeo.api.acr.Content;
4
5 /** A {@link Content} implementation. */
6 public interface ProvidedContent extends Content {
7 ProvidedSession getSession();
8
9 ContentProvider getProvider();
10
11 default ProvidedContent getMountPoint(String relativePath) {
12 throw new UnsupportedOperationException("This content doe not support mount");
13 }
14 }