summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/lib/soap/header/handler.rb
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-07 07:38:25 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-07 07:38:25 +0000
commit9ff1e787f915539b1980654e3d3d2013ff5c81d2 (patch)
tree8d0fc9ca5b4dbfa9885dc56862292d55091bcaac /ruby_1_8_6/lib/soap/header/handler.rb
parent441546edcfbb1b346c87b69c5f578d1a0e522e06 (diff)
wrong commit; sorryv1_8_6_269
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_6_269@17938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby_1_8_6/lib/soap/header/handler.rb')
-rw-r--r--ruby_1_8_6/lib/soap/header/handler.rb57
1 files changed, 0 insertions, 57 deletions
diff --git a/ruby_1_8_6/lib/soap/header/handler.rb b/ruby_1_8_6/lib/soap/header/handler.rb
deleted file mode 100644
index 7da2836e24..0000000000
--- a/ruby_1_8_6/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