diff options
| author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 08:14:57 +0000 |
|---|---|---|
| committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 08:14:57 +0000 |
| commit | 0eb20dc9b41da71b51540f75cfe955ed71420915 (patch) | |
| tree | 6c16302232c2b655cfd5ea406a9ac202814a8b35 /lib/soap/header/handler.rb | |
| parent | f54f1ce821930931cf490d6c7ac8f3f12baec3a1 (diff) | |
| download | ruby-0eb20dc9b41da71b51540f75cfe955ed71420915.tar.gz ruby-0eb20dc9b41da71b51540f75cfe955ed71420915.tar.xz ruby-0eb20dc9b41da71b51540f75cfe955ed71420915.zip | |
Mon Dec 24 17:06:37 2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* {lib,test}/{soap,wsdl,xsd}: removed soap4r along to the discussion
at ruby-core and ruby-dev. see [ruby-core:12535], [ruby-dev:31969].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/soap/header/handler.rb')
| -rw-r--r-- | lib/soap/header/handler.rb | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/lib/soap/header/handler.rb b/lib/soap/header/handler.rb deleted file mode 100644 index 7da2836e2..000000000 --- a/lib/soap/header/handler.rb +++ /dev/null @@ -1,57 +0,0 @@ -# SOAP4R - SOAP Header handler item -# Copyright (C) 2003, 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>. - -# This program is copyrighted free software by NAKAMURA, Hiroshi. You can -# redistribute it and/or modify it under the same terms of Ruby's license; -# either the dual license version in 2003, or any later version. - - -require 'soap/element' - - -module SOAP -module Header - - -class Handler - attr_reader :elename - attr_reader :mustunderstand - attr_reader :encodingstyle - - def initialize(elename) - @elename = elename - @mustunderstand = false - @encodingstyle = nil - end - - # Should return a SOAP/OM, a SOAPHeaderItem or nil. - def on_outbound - nil - end - - # Given header is a SOAPHeaderItem or nil. - def on_inbound(header, mustunderstand = false) - # do something. - end - - def on_outbound_headeritem - item = on_outbound - if item.nil? - nil - elsif item.is_a?(::SOAP::SOAPHeaderItem) - item.elename = @elename - item - else - item.elename = @elename - ::SOAP::SOAPHeaderItem.new(item, @mustunderstand, @encodingstyle) - end - end - - def on_inbound_headeritem(header) - on_inbound(header.element, header.mustunderstand) - end -end - - -end -end |
