Uses of Class
com.atlassian.oai.validator.model.SimpleRequest.Builder
Packages that use SimpleRequest.Builder
-
Uses of SimpleRequest.Builder in com.atlassian.oai.validator.model
Methods in com.atlassian.oai.validator.model that return SimpleRequest.BuilderModifier and TypeMethodDescriptionstatic SimpleRequest.BuilderA convenience method for creating aSimpleRequest.Builderwith HTTP method DELETE and the given path.static SimpleRequest.BuilderA convenience method for creating aSimpleRequest.Builderwith HTTP method GET and the given path.static SimpleRequest.BuilderA convenience method for creating aSimpleRequest.Builderwith HTTP method HEAD and the given path.static SimpleRequest.BuilderA convenience method for creating aSimpleRequest.Builderwith HTTP method OPTIONS and the given path.static SimpleRequest.BuilderA convenience method for creating aSimpleRequest.Builderwith HTTP method PATCH and the given path.static SimpleRequest.BuilderA convenience method for creating aSimpleRequest.Builderwith HTTP method POST and the given path.static SimpleRequest.BuilderA convenience method for creating aSimpleRequest.Builderwith HTTP method PUT and the given path.static SimpleRequest.BuilderA convenience method for creating aSimpleRequest.Builderwith HTTP method TRACE and the given path.SimpleRequest.Builder.withAccept(String... accept) Sets the accept header on this builder.SimpleRequest.Builder.withAuthorization(String auth) Sets the authorization header on this builder.SimpleRequest.Builder.withBody(byte[] content) Adds a request body as byte array to this builder.Adds a requestBodyto this builder.SimpleRequest.Builder.withBody(InputStream content) Adds a request body asInputStreamto this builder.Adds a request body asStringto this builder.SimpleRequest.Builder.withContentType(String contentType) Sets the content type header on this builder.SimpleRequest.Builder.withHeader(String name, String... values) Adds a request header to this builder.SimpleRequest.Builder.withHeader(String name, List<String> values) Adds a request header to this builder.SimpleRequest.Builder.withQueryParam(String name, String... values) Adds a query parameter to this request builder.SimpleRequest.Builder.withQueryParam(String name, List<String> values) Adds a query parameter to this request builder.