Class: RailsIam::Authentication::AuthenticatedUser

Inherits:
Data
  • Object
show all
Defined in:
app/services/rails_iam/authentication/authenticated_user.rb

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenObject (readonly)

Returns the value of attribute access_token

Returns:

  • (Object)

    the current value of access_token



5
6
7
# File 'app/services/rails_iam/authentication/authenticated_user.rb', line 5

def access_token
  @access_token
end

#access_token_expires_inObject (readonly)

Returns the value of attribute access_token_expires_in

Returns:

  • (Object)

    the current value of access_token_expires_in



5
6
7
# File 'app/services/rails_iam/authentication/authenticated_user.rb', line 5

def access_token_expires_in
  @access_token_expires_in
end

#refresh_tokenObject (readonly)

Returns the value of attribute refresh_token

Returns:

  • (Object)

    the current value of refresh_token



5
6
7
# File 'app/services/rails_iam/authentication/authenticated_user.rb', line 5

def refresh_token
  @refresh_token
end

#refresh_token_expires_inObject (readonly)

Returns the value of attribute refresh_token_expires_in

Returns:

  • (Object)

    the current value of refresh_token_expires_in



5
6
7
# File 'app/services/rails_iam/authentication/authenticated_user.rb', line 5

def refresh_token_expires_in
  @refresh_token_expires_in
end

#userObject (readonly)

Returns the value of attribute user

Returns:

  • (Object)

    the current value of user



5
6
7
# File 'app/services/rails_iam/authentication/authenticated_user.rb', line 5

def user
  @user
end