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

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

There is a newer version: 0.3.0
Show 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 - 2024 Weber Informatics LLC | Privacy Policy