com.microsoft.azure.datalake.store.UserGroupRepresentation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-data-lake-store-sdk Show documentation
Show all versions of azure-data-lake-store-sdk Show documentation
Java SDK for Microsoft Azure Data Lake Store
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
* See License.txt in the project root for license information.
*/
package com.microsoft.azure.datalake.store;
/**
* Enum specifying how user and group objects should be represented in calls that return user and group ID.
*/
public enum UserGroupRepresentation {
/**
* Object ID (OID), which is a GUID representing the ID of the user or group. The OID is immutable even if
* the name of the user or group changes.
*/
OID,
/**
* User Principal Name of the group or user, which is the human-friendly username. Since users and groups are
* stored internally as OID, using the UPN involves an additional lookup into the directory.
*/
UPN
}