Class: Virgil::Jwt::AccessToken

Inherits:
Object
  • Object
show all
Defined in:
lib/virgil/jwt/access_token.rb

Direct Known Subclasses

Jwt

Instance Method Summary collapse

Instance Method Details

#identityString

Gets token identity.

Returns:

  • (String)

Raises:

  • (NotImplementedError)


40
41
42
# File 'lib/virgil/jwt/access_token.rb', line 40

def identity
  raise NotImplementedError
end

#string_representationString

Gets token string representation.

Returns:

  • (String)

Raises:

  • (NotImplementedError)


46
47
48
# File 'lib/virgil/jwt/access_token.rb', line 46

def string_representation
  raise NotImplementedError
end