Class: CASClient::ProxyGrantingTicket
- Inherits:
-
Object
- Object
- CASClient::ProxyGrantingTicket
- Defined in:
- lib/casclient/tickets.rb
Instance Attribute Summary collapse
-
#iou ⇒ Object
readonly
Returns the value of attribute iou.
-
#ticket ⇒ Object
readonly
Returns the value of attribute ticket.
Instance Method Summary collapse
-
#initialize(ticket, iou) ⇒ ProxyGrantingTicket
constructor
A new instance of ProxyGrantingTicket.
- #to_s ⇒ Object
Constructor Details
#initialize(ticket, iou) ⇒ ProxyGrantingTicket
Returns a new instance of ProxyGrantingTicket.
29 30 31 32 |
# File 'lib/casclient/tickets.rb', line 29 def initialize(ticket, iou) @ticket = ticket @iou = iou end |
Instance Attribute Details
#iou ⇒ Object (readonly)
Returns the value of attribute iou.
27 28 29 |
# File 'lib/casclient/tickets.rb', line 27 def iou @iou end |
#ticket ⇒ Object (readonly)
Returns the value of attribute ticket.
27 28 29 |
# File 'lib/casclient/tickets.rb', line 27 def ticket @ticket end |
Instance Method Details
#to_s ⇒ Object
34 35 36 |
# File 'lib/casclient/tickets.rb', line 34 def to_s ticket end |