|
|
@ -22,9 +22,9 @@ public class InterfaceService extends ServiceManager { |
|
|
|
} |
|
|
|
} |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public boolean init() { |
|
|
|
public boolean init() { |
|
|
|
CAP.trDebug("Start init service INTERFACE"); |
|
|
|
CAP.trDebug("Start init service UIServer"); |
|
|
|
if (!super.init()) { |
|
|
|
if (!super.init()) { |
|
|
|
CAP.trError("Failed to init QUERYService."); |
|
|
|
CAP.trError("Failed to init UIServer."); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
service = this; |
|
|
|
service = this; |
|
|
@ -41,7 +41,7 @@ public class InterfaceService extends ServiceManager { |
|
|
|
if(service != null){ |
|
|
|
if(service != null){ |
|
|
|
return service; |
|
|
|
return service; |
|
|
|
} |
|
|
|
} |
|
|
|
String[] arg = new String[] { "-ServerName", "INTERFACE" }; |
|
|
|
String[] arg = new String[] { "-ServerName", "UIServer" }; |
|
|
|
service = new InterfaceService(arg); |
|
|
|
service = new InterfaceService(arg); |
|
|
|
return service; |
|
|
|
return service; |
|
|
|
} |
|
|
|
} |
|
|
|