UserManagementService.java
957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* javax.annotation.Nonnull
* javax.jcr.RepositoryException
* javax.jcr.Session
* org.apache.jackrabbit.api.security.user.UserManager
*/
package com.adobe.granite.security.user;
import aQute.bnd.annotation.ProviderType;
import javax.annotation.Nonnull;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
import org.apache.jackrabbit.api.security.user.UserManager;
@ProviderType
public interface UserManagementService {
@Nonnull
public UserManager getUserManager(@Nonnull Session var1) throws UnsupportedOperationException, RepositoryException;
@Nonnull
public String getAuthorizableRootPath();
@Nonnull
public String getUserRootPath();
@Nonnull
public String getGroupRootPath();
@Nonnull
public String getAnonymousId();
@Nonnull
public String getEveryoneName();
}