Interface HttpEntityBuilder
- All Known Implementing Classes:
DefaultHttpEntityBuilder
public interface HttpEntityBuilder
Http Entity Builder for REST Service calls.
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.HttpEntitycreateHttpEntity(org.springframework.http.HttpHeaders header) Create HTTP entityorg.springframework.http.HttpEntity<ReservationAbapRequest>createHttpEntity(org.springframework.http.HttpHeaders header, ReservationAbapRequest abap) Create HTTP entity for reservationorg.springframework.http.HttpEntity<String>createHttpEntity(org.springframework.http.HttpHeaders header, String string) Create HTTP entity with Stringorg.springframework.http.HttpEntity<SourcingAbapRequest>createHttpEntityForSourcing(org.springframework.http.HttpHeaders header, SourcingAbapRequest abap) Create HTTP entity for sourcing
-
Method Details
-
createHttpEntity
org.springframework.http.HttpEntity<ReservationAbapRequest> createHttpEntity(org.springframework.http.HttpHeaders header, ReservationAbapRequest abap) Create HTTP entity for reservation- Parameters:
header-abap-- Returns:
- HttpEntity
-
createHttpEntityForSourcing
org.springframework.http.HttpEntity<SourcingAbapRequest> createHttpEntityForSourcing(org.springframework.http.HttpHeaders header, SourcingAbapRequest abap) Create HTTP entity for sourcing- Parameters:
header-abap-- Returns:
- HttpEntity
-
createHttpEntity
org.springframework.http.HttpEntity<String> createHttpEntity(org.springframework.http.HttpHeaders header, String string) Create HTTP entity with String- Parameters:
header-string-- Returns:
- HttpEntity
-
createHttpEntity
org.springframework.http.HttpEntity createHttpEntity(org.springframework.http.HttpHeaders header) Create HTTP entity- Parameters:
header-- Returns:
- HttpEntity
-