Interface ResponseAccessor.ResponseBuilder<RES,B extends ResponseAccessor.ResponseBuilder<RES,B>>

Type Parameters:
RES - The type of the response to be used.
B - The builder to return in order to be able to apply multiple build operations.
Enclosing interface:
ResponseAccessor<RES>

public static interface ResponseAccessor.ResponseBuilder<RES,B extends ResponseAccessor.ResponseBuilder<RES,B>>
Provides a builder method for a response property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    withResponse(RES aResponse)
    Sets the response for the response property.
  • Method Details

    • withResponse

      B withResponse(RES aResponse)
      Sets the response for the response property.
      Parameters:
      aResponse - The response to be stored by the response property.
      Returns:
      The builder for applying multiple build operations.