public final enum

UserType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.user.UserType

Class Overview

The type of user

Summary

Enum Values
UserType  NORMAL  'Normal' users are backed by a user from a Crowd directory and are capable of authenticating via the UI or REST provided they are licensed to do so. 
UserType  SERVICE  'Service' users are not backed by a user from a Crowd directory and are not able to authenticate via the UI or REST. 
Public Methods
static UserType valueOf(String name)
final static UserType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final UserType NORMAL

'Normal' users are backed by a user from a Crowd directory and are capable of authenticating via the UI or REST provided they are licensed to do so.

public static final UserType SERVICE

'Service' users are not backed by a user from a Crowd directory and are not able to authenticate via the UI or REST. Service users can be used to programmatically perform tasks which require an associated user and do not count towards the licensed user count.

Public Methods

public static UserType valueOf (String name)

public static final UserType[] values ()