X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=org.argeo.api%2Fsrc%2Forg%2Fargeo%2Fapi%2Fgcr%2FContentRepository.java;h=0807075ced23eb3a62767a395803604d674cce22;hb=098eeffb896a24b56371b5173d4104071685f50e;hp=3349b30a1acef5b32c3351b04cbb7df6b08d2e5b;hpb=b7683883512d924a039a43c2e1102290aa49f64d;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.api/src/org/argeo/api/gcr/ContentRepository.java b/org.argeo.api/src/org/argeo/api/gcr/ContentRepository.java index 3349b30a1..0807075ce 100644 --- a/org.argeo.api/src/org/argeo/api/gcr/ContentRepository.java +++ b/org.argeo.api/src/org/argeo/api/gcr/ContentRepository.java @@ -1,6 +1,12 @@ package org.argeo.api.gcr; +import java.util.Locale; import java.util.function.Supplier; +/** + * A content repository is an actually running implementation of various kind of + * content system. It allows a pre-authenticated caller to open a session. + */ public interface ContentRepository extends Supplier { + ContentSession get(Locale locale); }