All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hyperfoil.http.config.HttpErgonomics Maven / Gradle / Ivy

There is a newer version: 0.27.1
Show newest version
package io.hyperfoil.http.config;

import io.hyperfoil.http.api.FollowRedirect;

// Contrary to the builder - immutable instance model we're using for most configuration objects
// we'll keep only single object for ergonomics as this is used only when the benchmark is being built.
public class HttpErgonomics {
   private final HttpPluginBuilder parent;
   private boolean repeatCookies = true;
   private boolean userAgentFromSession = true;
   private boolean autoRangeCheck = true;
   private boolean stopOnInvalid = true;
   private FollowRedirect followRedirect = FollowRedirect.NEVER;

   public HttpErgonomics(HttpPluginBuilder parent) {
      this.parent = parent;
   }

   /**
    * Set global cookie-repeating behaviour for all steps.
    *
    * @param repeatCookies Auto repeat?
    * @return Self.
    */
   public HttpErgonomics repeatCookies(boolean repeatCookies) {
      this.repeatCookies = repeatCookies;
      return this;
   }

   public boolean repeatCookies() {
      return repeatCookies;
   }

   public HttpErgonomics userAgentFromSession(boolean userAgentFromSession) {
      this.userAgentFromSession = userAgentFromSession;
      return this;
   }

   public boolean userAgentFromSession() {
      return userAgentFromSession;
   }

   public boolean autoRangeCheck() {
      return autoRangeCheck;
   }

   public HttpErgonomics autoRangeCheck(boolean autoRangeCheck) {
      this.autoRangeCheck = autoRangeCheck;
      return this;
   }

   public boolean stopOnInvalid() {
      return stopOnInvalid;
   }

   public HttpErgonomics stopOnInvalid(boolean stopOnInvalid) {
      this.stopOnInvalid = stopOnInvalid;
      return this;
   }

   public FollowRedirect followRedirect() {
      return followRedirect;
   }

   public HttpErgonomics followRedirect(FollowRedirect followRedirect) {
      this.followRedirect = followRedirect;
      return this;
   }

   public HttpPluginBuilder endErgonomics() {
      return parent;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy