Class ParameterBuilder

java.lang.Object
de.captaingoldfish.scim.sdk.client.http.ParameterBuilder

public class ParameterBuilder extends Object
author Pascal Knueppel
created at: 09.12.2019 - 22:22

this class is used to add parameters to http requests with the ScimHttpClient
  • Constructor Details

    • ParameterBuilder

      public ParameterBuilder()
  • Method Details

    • builder

      public static ParameterBuilder builder()
      creates a builder instance
    • addParameter

      public ParameterBuilder addParameter(String name, String value)
      adds the given name value pair and returns the builder instance
      Parameters:
      name - the name of the parameter
      value - the value of the parameter
      Returns:
      the builder instance
    • build

      public Map<String,String> build()
      builds the parameters as map