summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/test/wsdl/datetime/datetimeServant.rb
blob: 14145c42e54b9a11f5bc807007fb43886c752fa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'datetime.rb'

class DatetimePortType
  # SYNOPSIS
  #   now(now)
  #
  # ARGS
  #   now		 - {http://www.w3.org/2001/XMLSchema}dateTime
  #
  # RETURNS
  #   now		 - {http://www.w3.org/2001/XMLSchema}dateTime
  #
  # RAISES
  #   (undefined)
  #
  def now(now)
    #raise NotImplementedError.new
    now + 1
  end
end