(String password)
| 114 | } |
| 115 | |
| 116 | public AttachDebugUIResult connect(String password) throws RuntimeDebugClientException { |
| 117 | |
| 118 | RDBGAttachDebugUIRequest requestContent = ResponseFactory.eINSTANCE.createRDBGAttachDebugUIRequest(); |
| 119 | requestContent.setCredentials(RuntimePresentationConverter.fromPresentation(password)); |
| 120 | Request request = this.buildRequest(HttpMethod.POST, this.debugComponentUrl).param("cmd", "attachDebugUI"); |
| 121 | RDBGAttachDebugUIResponse responseContent = AbstractDebugClient.performRuntimeHttpRequest(this, request, this.initRequest(requestContent), RDBGAttachDebugUIResponse.class); |
| 122 | assert responseContent != null; |
| 123 | return responseContent.getResult(); |
| 124 | } |
| 125 | |
| 126 | public boolean disconnect() throws RuntimeDebugClientException { |
| 127 | RDBGDetachDebugUIRequest requestContent = ResponseFactory.eINSTANCE.createRDBGDetachDebugUIRequest(); |
no test coverage detected