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

com.webcohesion.enunciate.modules.jaxws.model.HttpHeader Maven / Gradle / Ivy

There is a newer version: 2.18.1
Show newest version
package com.webcohesion.enunciate.modules.jaxws.model;

/**
 * @author Ryan Heaton
 */
public class HttpHeader {

  private final String name;
  private final String description;

  public HttpHeader(String name, String description) {
    this.name = name;
    this.description = description;
  }

  public String getName() {
    return name;
  }

  public String getDescription() {
    return description;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy