
com.almworks.jira.structure.util.ItemDisplayable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
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