summaryrefslogtreecommitdiff
path: root/lib/soap/header/handler.rb
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 08:14:57 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 08:14:57 +0000
commit889c7de09d40ebdd3620cf9c0ad74d750b512221 (patch)
tree6c16302232c2b655cfd5ea406a9ac202814a8b35 /lib/soap/header/handler.rb
parentefed292c4311c8c182a32ac2afe70c6969815b2d (diff)
Mon Dec 24 17:06:37 2007 NAKAMURA, Hiroshi <[email protected]>
* {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: svn+ssh://ci.ruby-lang.org/ruby/trunk@14587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/soap/header/handler.rb')
-rw-r--r--lib/soap/header/handler.rb57
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 7da2836e24..0000000000
--- a/lib/soap/header/handler.rb
+++ /dev/null
@@ -1,57 +0,0 @@
-# SOAP4R - SOAP Header handler item
-# Copyright (C) 2003, 2003 NAKAMURA, Hiroshi <[email protected]>.
-
-# 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