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

com.hubspot.horizon.Header Maven / Gradle / Ivy

The newest version!
package com.hubspot.horizon;

import com.google.common.base.Preconditions;

public class Header {

  private final String name;
  private final String value;

  public Header(String name, String value) {
    this.name = Preconditions.checkNotNull(name);
    this.value = Preconditions.checkNotNull(value);
  }

  public String getName() {
    return name;
  }

  public String getValue() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy