class OmniAuth::Strategies::BisXmlDecryptLogonId
Public Class Methods
new(logon_id, options = {})
click to toggle source
Calls superclass method
# File lib/omniauth-nwbbis.rb, line 245 def initialize(logon_id, options = {}) @logon_id = logon_id @template = options.fetch(:template, self.class.template) super(@template) end
template()
click to toggle source
# File lib/omniauth-nwbbis.rb, line 236 def self.template %{ <EntschluesselLogonID xmlns="http://tempuri.org/"> <sender>bis</sender> <data><%= @logon_id %></data> </EntschluesselLogonID> } end
Public Instance Methods
result()
click to toggle source
Calls superclass method
# File lib/omniauth-nwbbis.rb, line 252 def result super(binding) end