All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cloud.sdk.cloudplatform.security.Scope Maven / Gradle / Ivy

/*
 * Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
 */

package com.sap.cloud.sdk.cloudplatform.security;

import javax.annotation.Nonnull;

/**
 * Represents a scope as a form of {@link Authorization}.
 */
public class Scope extends Authorization
{
    /**
     * Creates a new scope.
     *
     * @param name
     *            The name of the scope.
     */
    public Scope( @Nonnull final String name )
    {
        super(name);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy