Package com.dropbox.core.v2.teamlog
Enum EventCategory
- java.lang.Object
-
- java.lang.Enum<EventCategory>
-
- com.dropbox.core.v2.teamlog.EventCategory
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EventCategory>
public enum EventCategory extends java.lang.Enum<EventCategory>
Category of events in event audit log.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMIN_ALERTINGEvents that involve team related alerts.APPSEvents that apply to management of linked apps.COMMENTSEvents that have to do with comments on files and Paper documents.DATA_GOVERNANCEEvents that involve data governance actionsDEVICESEvents that apply to linked devices on mobile, desktop and Web platforms.DOMAINSEvents that involve domain management feature: domain verification, invite enforcement and account capture.ENCRYPTIONEvents that involve encryption.FILE_OPERATIONSEvents that have to do with filesystem operations on files and folders: copy, move, delete, etc.FILE_REQUESTSEvents that apply to the file requests feature.GROUPSEvents that involve group management.LOGINSEvents that involve users signing in to or out of Dropbox.MEMBERSEvents that involve team member management.OTHERCatch-all used for unknown tag values returned by the Dropbox servers.PAPEREvents that apply to Dropbox Paper.PASSWORDSEvents that involve using, changing or resetting passwords.REPORTSEvents that concern generation of admin reports, including team activity and device usage.SHARINGEvents that apply to all types of sharing and collaboration.SHOWCASEEvents that apply to Dropbox Showcase.SSOEvents that involve using or configuring single sign-on as well as administrative policies concerning single sign-on.TEAM_FOLDERSEvents that involve team folder management.TEAM_POLICIESEvents that involve a change in team-wide policies.TEAM_PROFILEEvents that involve a change in the team profile.TFAEvents that involve using or configuring two factor authentication as well as administrative policies concerning two factor authentication.TRUSTED_TEAMSEvents that apply to cross-team trust establishment.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EventCategoryvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EventCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADMIN_ALERTING
public static final EventCategory ADMIN_ALERTING
Events that involve team related alerts.
-
APPS
public static final EventCategory APPS
Events that apply to management of linked apps.
-
COMMENTS
public static final EventCategory COMMENTS
Events that have to do with comments on files and Paper documents.
-
DATA_GOVERNANCE
public static final EventCategory DATA_GOVERNANCE
Events that involve data governance actions
-
DEVICES
public static final EventCategory DEVICES
Events that apply to linked devices on mobile, desktop and Web platforms.
-
DOMAINS
public static final EventCategory DOMAINS
Events that involve domain management feature: domain verification, invite enforcement and account capture.
-
ENCRYPTION
public static final EventCategory ENCRYPTION
Events that involve encryption.
-
FILE_OPERATIONS
public static final EventCategory FILE_OPERATIONS
Events that have to do with filesystem operations on files and folders: copy, move, delete, etc.
-
FILE_REQUESTS
public static final EventCategory FILE_REQUESTS
Events that apply to the file requests feature.
-
GROUPS
public static final EventCategory GROUPS
Events that involve group management.
-
LOGINS
public static final EventCategory LOGINS
Events that involve users signing in to or out of Dropbox.
-
MEMBERS
public static final EventCategory MEMBERS
Events that involve team member management.
-
PAPER
public static final EventCategory PAPER
Events that apply to Dropbox Paper.
-
PASSWORDS
public static final EventCategory PASSWORDS
Events that involve using, changing or resetting passwords.
-
REPORTS
public static final EventCategory REPORTS
Events that concern generation of admin reports, including team activity and device usage.
-
SHARING
public static final EventCategory SHARING
Events that apply to all types of sharing and collaboration.
-
SHOWCASE
public static final EventCategory SHOWCASE
Events that apply to Dropbox Showcase.
-
SSO
public static final EventCategory SSO
Events that involve using or configuring single sign-on as well as administrative policies concerning single sign-on.
-
TEAM_FOLDERS
public static final EventCategory TEAM_FOLDERS
Events that involve team folder management.
-
TEAM_POLICIES
public static final EventCategory TEAM_POLICIES
Events that involve a change in team-wide policies.
-
TEAM_PROFILE
public static final EventCategory TEAM_PROFILE
Events that involve a change in the team profile.
-
TFA
public static final EventCategory TFA
Events that involve using or configuring two factor authentication as well as administrative policies concerning two factor authentication.
-
TRUSTED_TEAMS
public static final EventCategory TRUSTED_TEAMS
Events that apply to cross-team trust establishment.
-
OTHER
public static final EventCategory OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.Receiving a catch-all value typically indicates this SDK version is not up to date. Consider updating your SDK version to handle the new tags.
-
-
Method Detail
-
values
public static EventCategory[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EventCategory c : EventCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventCategory valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-