(Application zeze)
| 39 | } |
| 40 | |
| 41 | public Onz(Application zeze) { |
| 42 | this.zeze = zeze; |
| 43 | var config = zeze.getConfig(); |
| 44 | if (null != config.getServiceConf(OnzService.eName)) { |
| 45 | service = new OnzService(zeze); |
| 46 | RegisterProtocols(service); |
| 47 | } else { |
| 48 | service = null; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | public void start() throws Exception { |
| 53 | if (null != service) { |
nothing calls this directly
no test coverage detected