Package dev.case.api.services.blocking
Interface SkillService.WithRawResponse
-
- All Implemented Interfaces:
public interface SkillService.WithRawResponseA view of SkillService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract SkillService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
read
@MustBeClosed() HttpResponseFor<SkillReadResponse> read(String slug)
Returns a raw HTTP response for
get /skills/{slug}, but is otherwise the same as SkillService.read.
-
read
@MustBeClosed() HttpResponseFor<SkillReadResponse> read(String slug, SkillReadParams params, RequestOptions requestOptions)
-
read
@MustBeClosed() HttpResponseFor<SkillReadResponse> read(String slug, SkillReadParams params)
-
read
@MustBeClosed() abstract HttpResponseFor<SkillReadResponse> read(SkillReadParams params, RequestOptions requestOptions)
-
read
@MustBeClosed() HttpResponseFor<SkillReadResponse> read(SkillReadParams params)
-
read
@MustBeClosed() HttpResponseFor<SkillReadResponse> read(String slug, RequestOptions requestOptions)
-
resolve
@MustBeClosed() HttpResponseFor<SkillResolveResponse> resolve(SkillResolveParams params)
Returns a raw HTTP response for
get /skills/resolve, but is otherwise the same as SkillService.resolve.
-
resolve
@MustBeClosed() abstract HttpResponseFor<SkillResolveResponse> resolve(SkillResolveParams params, RequestOptions requestOptions)
-
-
-
-