package examples; import vicazh.hyperpool.stream.net.http.*; import vicazh.hyperpool.stream.Element; class ExampleServiceConnection extends Connection { ExampleServiceConnection(Element element) { super(element); } protected Session getSession() { return new ExampleServiceSession(this); } }