]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.acr/src/org/argeo/api/acr/spi/ProvidedContent.java
Introduce hierarchies in user management
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / spi / 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 }