1 #!/usr/bin/env jython
2 #
3 # Listing 3
4 #
5 # Place this file in the module $MULE_HOME/lib/usr/article instead of
6 # in a .jar if you want to donkey punch it.
7
8
9 from datetime import date
10
11
12 class BusinessObject(object):
13 # *** Public members ***
14
15 def today(self): # Return today as a string
16 return str(date.today())
17