from static method

MedTechApiBuilder from(
  1. MedTechApi previousApi
)

Implementation

static MedTechApiBuilder from(MedTechApi previousApi) {
  return newBuilder()
      .withICureBasePath(previousApi.iCureBasePath)
      .withUserName(previousApi.userName)
      .withPassword(previousApi.password)
      .withAuthServerUrl(previousApi.authServerUrl)
      .withAuthProcessId(previousApi.authProcessId);
}