Enum OrgAttributeType
- java.lang.Object
-
- java.lang.Enum<OrgAttributeType>
-
- com.blackberry.workspaces.sdk.api.enums.OrgAttributeType
-
- All Implemented Interfaces:
Serializable
,Comparable<OrgAttributeType>
public enum OrgAttributeType extends Enum<OrgAttributeType>
An enum of organization attribute types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AD_PROVISIONING
Active Directory provisioningADMIN_CONSOLE_MISC
Admin Console miscBYOK
BYOKCHANGE_LINKS
Change linksCIFS
CIFSCMIS
CMISCMIS_EXTERNALIZE
CMIS externalizeCOMMENTS
CommentsCUSTOM_LOGO
Custom logoCUSTOM_PRODUCT_NAME
Custom product nameDOCU_SIGN
DocuSignDOCUMENT_TAGS
Document tagsDRM
DRMEMAIL_INJECTOR
Email injectorEMAIL_PROTECTOR
Email protectorENABLE_BLACKLISTING
Enable blacklistingEXCHANGE
ExchangeFILE_RETENTION_POLICIES
File retention policiesICAP
ICAPIMANAGE
IManageLARGE_FILES_OUTLOOK
Large files OutlookLEGAL_HOLD
Legal holdLOCK_DOCUMENTS
Lock documentsMYDOX
MyDoXOFFICE_ONLINE_EDITING
Office online editingONE_DRIVE
OneDriveREAD_CONFIRMATION
Read confirmationREPORTS_AUTHENTICATION
Reports AuthenticationRESTORE_TO_SNAPSHOT
SALES_FORCE
SalesForceSHAREPOINT
SharepointSHAREPOINT_PROTECTOR
SharePoint protectorSIMPLE_SHARING
Simple sharingSYNC_POLICIES
Sync policiesSYSLOG
SyslogTIERED_ADMINISTRATOR_ROLES
Tiered administration rolesWATCHDOX_APP
WatchDox appWATCHDOX_EDITOR
WatchDox editorWORKSPACE_ROLE_BUILDER
Workspace role builderWORKSPACES
Workspaces
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrgAttributeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static OrgAttributeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXCHANGE
public static final OrgAttributeType EXCHANGE
Exchange
-
WORKSPACES
public static final OrgAttributeType WORKSPACES
Workspaces
-
DRM
public static final OrgAttributeType DRM
DRM
-
SHAREPOINT
public static final OrgAttributeType SHAREPOINT
Sharepoint
-
CIFS
public static final OrgAttributeType CIFS
CIFS
-
ICAP
public static final OrgAttributeType ICAP
ICAP
-
SYSLOG
public static final OrgAttributeType SYSLOG
Syslog
-
WATCHDOX_APP
public static final OrgAttributeType WATCHDOX_APP
WatchDox app
-
WATCHDOX_EDITOR
public static final OrgAttributeType WATCHDOX_EDITOR
WatchDox editor
-
AD_PROVISIONING
public static final OrgAttributeType AD_PROVISIONING
Active Directory provisioning
-
LEGAL_HOLD
public static final OrgAttributeType LEGAL_HOLD
Legal hold
-
DOCUMENT_TAGS
public static final OrgAttributeType DOCUMENT_TAGS
Document tags
-
FILE_RETENTION_POLICIES
public static final OrgAttributeType FILE_RETENTION_POLICIES
File retention policies
-
SIMPLE_SHARING
public static final OrgAttributeType SIMPLE_SHARING
Simple sharing
-
SYNC_POLICIES
public static final OrgAttributeType SYNC_POLICIES
Sync policies
-
ENABLE_BLACKLISTING
public static final OrgAttributeType ENABLE_BLACKLISTING
Enable blacklisting
-
TIERED_ADMINISTRATOR_ROLES
public static final OrgAttributeType TIERED_ADMINISTRATOR_ROLES
Tiered administration roles
-
CUSTOM_LOGO
public static final OrgAttributeType CUSTOM_LOGO
Custom logo
-
CUSTOM_PRODUCT_NAME
public static final OrgAttributeType CUSTOM_PRODUCT_NAME
Custom product name
-
CHANGE_LINKS
public static final OrgAttributeType CHANGE_LINKS
Change links
-
SHAREPOINT_PROTECTOR
public static final OrgAttributeType SHAREPOINT_PROTECTOR
SharePoint protector
-
EMAIL_PROTECTOR
public static final OrgAttributeType EMAIL_PROTECTOR
Email protector
-
MYDOX
public static final OrgAttributeType MYDOX
MyDoX
-
SALES_FORCE
public static final OrgAttributeType SALES_FORCE
SalesForce
-
CMIS
public static final OrgAttributeType CMIS
CMIS
-
CMIS_EXTERNALIZE
public static final OrgAttributeType CMIS_EXTERNALIZE
CMIS externalize
-
ONE_DRIVE
public static final OrgAttributeType ONE_DRIVE
OneDrive
-
WORKSPACE_ROLE_BUILDER
public static final OrgAttributeType WORKSPACE_ROLE_BUILDER
Workspace role builder
-
EMAIL_INJECTOR
public static final OrgAttributeType EMAIL_INJECTOR
Email injector
-
LARGE_FILES_OUTLOOK
public static final OrgAttributeType LARGE_FILES_OUTLOOK
Large files Outlook
-
OFFICE_ONLINE_EDITING
public static final OrgAttributeType OFFICE_ONLINE_EDITING
Office online editing
-
LOCK_DOCUMENTS
public static final OrgAttributeType LOCK_DOCUMENTS
Lock documents
-
DOCU_SIGN
public static final OrgAttributeType DOCU_SIGN
DocuSign
-
COMMENTS
public static final OrgAttributeType COMMENTS
Comments
-
READ_CONFIRMATION
public static final OrgAttributeType READ_CONFIRMATION
Read confirmation
-
ADMIN_CONSOLE_MISC
public static final OrgAttributeType ADMIN_CONSOLE_MISC
Admin Console misc
-
REPORTS_AUTHENTICATION
public static final OrgAttributeType REPORTS_AUTHENTICATION
Reports Authentication
-
RESTORE_TO_SNAPSHOT
public static final OrgAttributeType RESTORE_TO_SNAPSHOT
-
IMANAGE
public static final OrgAttributeType IMANAGE
IManage
-
BYOK
public static final OrgAttributeType BYOK
BYOK
-
-
Method Detail
-
values
public static OrgAttributeType[] 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 (OrgAttributeType c : OrgAttributeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrgAttributeType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-