]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.acr/src/org/argeo/api/acr/ContentRepository.java
Introduce system roles
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / ContentRepository.java
1 package org.argeo.api.acr;
2
3 import java.util.Locale;
4 import java.util.function.Supplier;
5
6 /**
7 * A content repository is an actually running implementation of various kind of
8 * content system. It allows a pre-authenticated caller to open a session.
9 */
10 public interface ContentRepository extends Supplier<ContentSession> {
11 ContentSession get(Locale locale);
12 }