1 20 package fr.dyade.aaa.agent; 21 22 27 public class DriverMonitor { 28 29 30 DriverIn drvIn; 31 32 DriverOut drvOut; 33 34 fr.dyade.aaa.util.Queue qout; 35 36 DriverConnect drvCnx; 37 38 NotificationInputStream ois; 39 40 NotificationOutputStream oos; 41 42 45 public DriverMonitor(DriverIn drvIn, 46 DriverOut drvOut, 47 fr.dyade.aaa.util.Queue qout, 48 NotificationInputStream ois, 49 NotificationOutputStream oos, 50 DriverConnect drvCnx) { 51 this.drvIn = drvIn; 52 this.drvOut = drvOut; 53 this.qout = qout; 54 this.ois = ois; 55 this.oos = oos; 56 this.drvCnx = drvCnx; 57 } 58 59 60 public fr.dyade.aaa.util.Queue getQout() { 61 return qout; 62 } 63 64 65 public NotificationInputStream getOis() { 66 return ois; 67 } 68 69 70 public NotificationOutputStream getOos() { 71 return oos; 72 } 73 } 74 | Popular Tags |