-
Bug
-
Resolution: Done
-
None
-
None
-
None
Title: The REST Remote Java RuntimeEngine Factory
Describe the issue:
The sample snipplet in chapter 16.4.1 is
RuntimeEngine engine = RemoteRuntimeEngineFactory.newRestBuilder()
.addUrl(new URL(instanceUrl))
.addUserName(user).addPassword(password)
.addDeploymentId(deploymentId)
.build();
Suggestions for improvement:
Shouldn't it be
RuntimeEngine engine = RemoteRestRuntimeEngineFactory.newRestBuilder()
.addUrl(new URL(instanceUrl))
.addUserName(user).addPassword(password)
.addDeploymentId(deploymentId)
.build();
Additional information: