class Cassandra::Protocol::AuthenticateResponse

Attributes

authentication_class[R]

Public Class Methods

new(authentication_class) click to toggle source
   # File lib/cassandra/protocol/responses/authenticate_response.rb
27 def initialize(authentication_class)
28   @authentication_class = authentication_class
29 end

Public Instance Methods

to_s() click to toggle source
   # File lib/cassandra/protocol/responses/authenticate_response.rb
31 def to_s
32   %(AUTHENTICATE #{authentication_class})
33 end