-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BDOG-1421 Move HttpClientImpl into play package
- Loading branch information
1 parent
1d15d0f
commit edadc8a
Showing
5 changed files
with
57 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
http-verbs-common/src/main/scala/uk/gov/hmrc/play/http/HttpClientImpl.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright 2021 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package uk.gov.hmrc.play.http | ||
|
||
import akka.actor.ActorSystem | ||
import com.typesafe.config.Config | ||
import play.api.libs.ws.{WSClient, WSRequest => PlayWSRequest} | ||
import uk.gov.hmrc.http.HttpClient | ||
import uk.gov.hmrc.http.hooks.HttpHook | ||
import uk.gov.hmrc.play.http.ws._ | ||
|
||
// class is final, since any overrides would be lost in the result of `withPlayWSRequest` | ||
final class HttpClientImpl ( | ||
override val configuration : Config, | ||
override val hooks : Seq[HttpHook], | ||
override val wsClient : WSClient, | ||
override val actorSystem : ActorSystem, | ||
override val transformRequest: PlayWSRequest => PlayWSRequest | ||
) extends HttpClient | ||
with WSHttp { | ||
|
||
override def withTransformRequest(transformRequest: PlayWSRequest => PlayWSRequest): HttpClientImpl = | ||
new HttpClientImpl( | ||
this.configuration, | ||
this.hooks, | ||
this.wsClient, | ||
this.actorSystem, | ||
this.transformRequest.andThen(transformRequest) | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters