What happened to VaadinSessioin

Hi there,

I try to include The Touchkit to a Vaadin 7 Application.
I know that Vaadin 7 is still in Beta and the Touchkit for Vaadin 7 in Alpha status.

TouchkitUI try to load the VaadinSession. This throws a ClassNotFound Exception because this does not exists anymore. If I use Beta1 there is a VaadinSession but not in Beta 7.

So anyobody has an Idea to what I have to change the Sourcecode of the TouchKitUI?
Or can I only Run it with an previous Beta Versoin of Vaadin?


@SuppressWarnings("serial")
@Theme("base")
public abstract class TouchKitUI extends UI {
    static {
        VaadinSession current = VaadinSession.getCurrent();

        TouchKitSettings.init(current, null);
    }

}

Marc

VaadinSession has been renamed to VaadinServiceSession