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

com.wordnik.swagger.models.License Maven / Gradle / Ivy

The newest version!
package com.wordnik.swagger.models;

public class License {
  private String name;
  private String url;

  public License name(String name) {
    setName(name);
    return this;
  }
  public License url(String url) {
    setUrl(url);
    return this;
  }

  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }

  public String getUrl() {
    return url;
  }
  public void setUrl(String url) {
    this.url = url;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy