Enum OrgRoleType

    • Enum Constant Detail

      • VISITOR

        public static final OrgRoleType VISITOR
        Visitor
      • VDR_OWNER

        public static final OrgRoleType VDR_OWNER
        VDR owner
      • ORG_ADMIN

        public static final OrgRoleType ORG_ADMIN
        Org admin
      • SDS_USER

        public static final OrgRoleType SDS_USER
        SDS user
      • SUPER_ADMIN

        public static final OrgRoleType SUPER_ADMIN
        Super admin
      • HELP_DESK

        public static final OrgRoleType HELP_DESK
        Help desk
      • VDR_SUBSCRIBER

        public static final OrgRoleType VDR_SUBSCRIBER
        VDR subscriber
      • AUDIT_HELP_DESK

        public static final OrgRoleType AUDIT_HELP_DESK
        Audit help desk
      • SHAREPOINT_DEFAULT_ROOM_ADMIN

        public static final OrgRoleType SHAREPOINT_DEFAULT_ROOM_ADMIN
        SharePoint default room admin
      • CIFS_DEFAULT_ROOM_ADMIN

        public static final OrgRoleType CIFS_DEFAULT_ROOM_ADMIN
        CIFS default room admin
      • MYDOX_WORKSPACE_OWNER

        public static final OrgRoleType MYDOX_WORKSPACE_OWNER
        MyDoX workspace owner
      • WATCHDOX_PERSONAL_USER

        public static final OrgRoleType WATCHDOX_PERSONAL_USER
        Watchdox personal user
      • LEGAL_INVESTIGATOR

        public static final OrgRoleType LEGAL_INVESTIGATOR
        Legal investigator
      • PROTECTED_USER

        public static final OrgRoleType PROTECTED_USER
        Protected user
      • SERVICE_REPRESENTING_USER

        public static final OrgRoleType SERVICE_REPRESENTING_USER
        Service Representing User
      • INBOUND_TRANSIENT_WORKSPACE_OWNER

        public static final OrgRoleType INBOUND_TRANSIENT_WORKSPACE_OWNER
        Transient Workspace Owner
      • SERVICEX_ADMIN

        public static final OrgRoleType SERVICEX_ADMIN
        ServiceX admin
    • Method Detail

      • values

        public static OrgRoleType[] 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 (OrgRoleType c : OrgRoleType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OrgRoleType 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 name
        NullPointerException - if the argument is null