1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package net.sf.nxqd;
17
18 import java.util.logging.Level;
19 import java.util.logging.Logger;
20 import java.util.ArrayList;
21 import java.util.Map;
22 import java.util.List;
23 import org.w3c.dom.Document;
24
25 /**
26 * The class <code>NxqdConsumer</code> is a utility class
27 * for all classes needing to cimmunicate using the NxqdClient.
28 *
29 * @author <a href="mailto:webhiker@sourceforge.net">webhiker</a>
30 * @version 1.0
31 */
32 public class NxqdConsumer extends Object {
33
34 /**
35 * The variable <code>logger</code> is used for logging events.
36 *
37 */
38 private static Logger logger = Logger.getLogger(NxqdConsumer.class.getName());
39 private NxqdManager manager;
40
41 public NxqdConsumer() {
42 }
43
44 public NxqdConsumer(NxqdManager manager) {
45 this.manager = manager;
46 }
47
48 public NxqdManager getNxqdManager() {
49 return manager;
50 }
51
52 public void setNxqdManager(NxqdManager manager) {
53 this.manager = manager;
54 }
55 }