Statistics
| Revision:

root / hci / trunk / .metadata / .plugins / org.eclipse.core.resources / .history / bb / 40044fa1c311001014a7aaca645a4b74 @ 3

History | View | Annotate | Download (644 Bytes)

1
package com.eneraptor.hci
2

    
3
class LogicRequestController {
4

    
5
    def testConnection = {
6
		
7
		def output = "";
8
		/*output += reportService.println("Conection test using")
9
		output += reportService.println("  Logic IP address:  " + InternalConfig.findByConfigId('logic-ip').configVal)
10
		output += reportService.println("  Logic port number: " + InternalConfig.findByConfigId('logic-port').configVal)
11
		
12
		output += reportService.println("Test started")
13
		output += reportService.println("  Error:             " + "Connection implementation missing.")
14
		output += reportService.println("Test ended")*/
15
		
16
		[output:output]
17
		
18
	}
19
	
20
}