
com.sap.cloud.sdk.cloudplatform.security.Role 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;
/**
* A role a user can assume as a form of {@code Authorization}.
*/
public class Role extends Authorization
{
/**
* Creates a new role.
*
* @param name
* The name of the role.
*/
public Role( @Nonnull final String name )
{
super(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy