aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/lib/action_web_service/vendor/ws/marshaling/abstract.rb
blob: 53120e144721a4109cb06a202f8206c69fed9de2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module WS
  module Marshaling
    class AbstractMarshaler
      def marshal(param)
        raise NotImplementedError
      end

      def unmarshal(param)
        raise NotImplementedError
      end

      def register_type(type)
        nil
      end
    end
  end
end