Class: Apiphobic::Tokens::JsonWebTokens::Null
Instance Method Summary
collapse
#method_missing, #respond_to_missing?
#configuration, included
Methods inherited from Null
#blank?, #to_h, #to_s, #valid?, #validate!
Instance Method Details
#audience ⇒ Object
14
15
16
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 14
def audience
nil
end
|
#expiration ⇒ Object
26
27
28
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 26
def expiration
nil
end
|
#id ⇒ Object
30
31
32
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 30
def id
nil
end
|
#issued_at ⇒ Object
18
19
20
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 18
def issued_at
nil
end
|
#issuer ⇒ Object
22
23
24
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 22
def issuer
nil
end
|
#not_before ⇒ Object
34
35
36
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 34
def not_before
nil
end
|
#owner_id ⇒ Object
38
39
40
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 38
def owner_id
nil
end
|
#roles ⇒ Object
50
51
52
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 50
def roles
[]
end
|
#subject ⇒ Object
46
47
48
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 46
def subject
nil
end
|
#subject_id ⇒ Object
42
43
44
|
# File 'lib/apiphobic/tokens/json_web_tokens/null.rb', line 42
def subject_id
nil
end
|