ReplicateScope.java 846 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.servlet.http.HttpServletRequest
 *  org.apache.jackrabbit.api.security.user.User
 */
package com.adobe.granite.oauth.server.scopes.impl;

import com.adobe.granite.oauth.server.Scope;
import javax.servlet.http.HttpServletRequest;
import org.apache.jackrabbit.api.security.user.User;

public class ReplicateScope
implements Scope {
    public static final String REPLICATE_SCOPE_NAME = "replicate";

    public String getName() {
        return "replicate";
    }

    public String getResourcePath(User user) {
        return null;
    }

    public String getEndpoint() {
        return null;
    }

    public String getDescription(HttpServletRequest request) {
        return "Allow the OAuth client to replicate on behalf of the resource owner";
    }
}