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

com.almworks.jira.structure.util.ItemDisplayable Maven / Gradle / Ivy

There is a newer version: 17.25.3
Show newest version
package com.almworks.jira.structure.util;

public class ItemDisplayable {
  private final String myDescription;
  private final String myUrl;

  public ItemDisplayable(String description, String url) {
    myDescription = description;
    myUrl = url;
  }

  public String getDescription() {
    return myDescription;
  }

  public String getUrl() {
    return myUrl;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy