[SOLVED] Creating a HSBType with Jython

How can I use the build in datatype HSBType with Jython?

#GRÜN
    if strFarbe == "2":
        log.info("Jython: Alle Lichter grün geschalten")
        events.sendCommand("gColor","new HSBType(new DecimalType(120),new PercentType(100),new PercentType(100))")

doesn’t work, how can I send HSB Values to an item?
Thanks in advantage

solved it:

if strFarbe == "1": #ROT
        log.info("Jython: Alle Lichter rot geschalten")
        events.sendCommand("gColor","359,100,100")