com.nulabinc.backlog4j.Icon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backlog4j Show documentation
Show all versions of backlog4j Show documentation
Backlog4j is a Backlog binding library for Java.
package com.nulabinc.backlog4j;
import java.io.InputStream;
/**
* The interface for Backlog icon file data.
*
* @author nulab-inc
*/
public interface Icon {
String getFilename();
InputStream getContent();
}