01: package vicazh.hyperpool.stream.net.http.html;
02:
03: import vicazh.hyperpool.stream.Connection;
04:
05: /**
06: * The xml transformer service
07: *
08: * @author Victor Zhigunov
09: * @version 0.3.4
10: */
11: public class XMLService extends Service {
12: public XMLService() {
13: }
14:
15: Object object;
16:
17: /**
18: * @param object
19: * writer object
20: */
21: public XMLService(Object object) {
22: this .object = object;
23: }
24:
25: public Connection getConnection() {
26: return new XMLConnection(this);
27: }
28: }
|