class WSDL::OperationBinding::BoundId

Attributes

name[R]
soapaction[R]

Public Class Methods

new(name, soapaction) click to toggle source
# File lib/wsdl/operationBinding.rb, line 60
def initialize(name, soapaction)
  @name = name
  @soapaction = soapaction
end

Public Instance Methods

==(rhs) click to toggle source
# File lib/wsdl/operationBinding.rb, line 65
def ==(rhs)
  !rhs.nil? and @name == rhs.name and @soapaction == rhs.soapaction
end
eql?(rhs) click to toggle source
# File lib/wsdl/operationBinding.rb, line 69
def eql?(rhs)
  (self == rhs)
end
hash() click to toggle source
# File lib/wsdl/operationBinding.rb, line 73
def hash
  @name.hash ^ @soapaction.hash
end