Class User

    • Method Detail

      • userId

        public final String userId()

        The unique identifier for the user.

        Returns:
        The unique identifier for the user.
      • status

        public final UserStatus status()

        The current status of the user.

        • CREATING – The user creation is in progress.

        • ENABLED – The user is created and is currently active.

        • DISABLED – The user is currently inactive.

        If the service returns an enum value that is not available in the current SDK version, status will return UserStatus.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from statusAsString().

        Returns:
        The current status of the user.

        • CREATING – The user creation is in progress.

        • ENABLED – The user is created and is currently active.

        • DISABLED – The user is currently inactive.

        See Also:
        UserStatus
      • statusAsString

        public final String statusAsString()

        The current status of the user.

        • CREATING – The user creation is in progress.

        • ENABLED – The user is created and is currently active.

        • DISABLED – The user is currently inactive.

        If the service returns an enum value that is not available in the current SDK version, status will return UserStatus.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from statusAsString().

        Returns:
        The current status of the user.

        • CREATING – The user creation is in progress.

        • ENABLED – The user is created and is currently active.

        • DISABLED – The user is currently inactive.

        See Also:
        UserStatus
      • firstName

        public final String firstName()

        The first name of the user.

        Returns:
        The first name of the user.
      • lastName

        public final String lastName()

        The last name of the user.

        Returns:
        The last name of the user.
      • emailAddress

        public final String emailAddress()

        The email address of the user. The email address serves as a uniquer identifier for each user and cannot be changed after it's created.

        Returns:
        The email address of the user. The email address serves as a uniquer identifier for each user and cannot be changed after it's created.
      • type

        public final UserType type()

        Indicates the type of user.

        • SUPER_USER – A user with permission to all the functionality and data in FinSpace.

        • APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.

        If the service returns an enum value that is not available in the current SDK version, type will return UserType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from typeAsString().

        Returns:
        Indicates the type of user.

        • SUPER_USER – A user with permission to all the functionality and data in FinSpace.

        • APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.

        See Also:
        UserType
      • typeAsString

        public final String typeAsString()

        Indicates the type of user.

        • SUPER_USER – A user with permission to all the functionality and data in FinSpace.

        • APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.

        If the service returns an enum value that is not available in the current SDK version, type will return UserType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from typeAsString().

        Returns:
        Indicates the type of user.

        • SUPER_USER – A user with permission to all the functionality and data in FinSpace.

        • APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.

        See Also:
        UserType
      • apiAccess

        public final ApiAccess apiAccess()

        Indicates whether the user can use the GetProgrammaticAccessCredentials API to obtain credentials that can then be used to access other FinSpace Data API operations.

        • ENABLED – The user has permissions to use the APIs.

        • DISABLED – The user does not have permissions to use any APIs.

        If the service returns an enum value that is not available in the current SDK version, apiAccess will return ApiAccess.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from apiAccessAsString().

        Returns:
        Indicates whether the user can use the GetProgrammaticAccessCredentials API to obtain credentials that can then be used to access other FinSpace Data API operations.

        • ENABLED – The user has permissions to use the APIs.

        • DISABLED – The user does not have permissions to use any APIs.

        See Also:
        ApiAccess
      • apiAccessAsString

        public final String apiAccessAsString()

        Indicates whether the user can use the GetProgrammaticAccessCredentials API to obtain credentials that can then be used to access other FinSpace Data API operations.

        • ENABLED – The user has permissions to use the APIs.

        • DISABLED – The user does not have permissions to use any APIs.

        If the service returns an enum value that is not available in the current SDK version, apiAccess will return ApiAccess.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from apiAccessAsString().

        Returns:
        Indicates whether the user can use the GetProgrammaticAccessCredentials API to obtain credentials that can then be used to access other FinSpace Data API operations.

        • ENABLED – The user has permissions to use the APIs.

        • DISABLED – The user does not have permissions to use any APIs.

        See Also:
        ApiAccess
      • apiAccessPrincipalArn

        public final String apiAccessPrincipalArn()

        The ARN identifier of an AWS user or role that is allowed to call the GetProgrammaticAccessCredentials API to obtain a credentials token for a specific FinSpace user. This must be an IAM role within your FinSpace account.

        Returns:
        The ARN identifier of an AWS user or role that is allowed to call the GetProgrammaticAccessCredentials API to obtain a credentials token for a specific FinSpace user. This must be an IAM role within your FinSpace account.
      • createTime

        public final Long createTime()

        The timestamp at which the user was created in FinSpace. The value is determined as epoch time in milliseconds.

        Returns:
        The timestamp at which the user was created in FinSpace. The value is determined as epoch time in milliseconds.
      • lastEnabledTime

        public final Long lastEnabledTime()

        Describes the last time the user was activated. The value is determined as epoch time in milliseconds.

        Returns:
        Describes the last time the user was activated. The value is determined as epoch time in milliseconds.
      • lastDisabledTime

        public final Long lastDisabledTime()

        Describes the last time the user was deactivated. The value is determined as epoch time in milliseconds.

        Returns:
        Describes the last time the user was deactivated. The value is determined as epoch time in milliseconds.
      • lastModifiedTime

        public final Long lastModifiedTime()

        Describes the last time the user was updated. The value is determined as epoch time in milliseconds.

        Returns:
        Describes the last time the user was updated. The value is determined as epoch time in milliseconds.
      • lastLoginTime

        public final Long lastLoginTime()

        Describes the last time that the user logged into their account. The value is determined as epoch time in milliseconds.

        Returns:
        Describes the last time that the user logged into their account. The value is determined as epoch time in milliseconds.
      • serializableBuilderClass

        public static Class<? extends User.Builder> serializableBuilderClass()
      • hashCode

        public final int hashCode()
        Overrides:
        hashCode in class Object
      • equals

        public final boolean equals​(Object obj)
        Overrides:
        equals in class Object
      • toString

        public final String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
      • getValueForField

        public final <T> Optional<T> getValueForField​(String fieldName,
                                                      Class<T> clazz)