UserManagementService.java 957 Bytes
/*
 * 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();
}