![JAR search and dependency download from the Maven repository](/logo.png)
io.lsn.spring.issue.domain.IssueInterface Maven / Gradle / Ivy
package io.lsn.spring.issue.domain;
import io.lsn.spring.issue.domain.entity.UserInterface;
import java.util.List;
/**
* @author Patryk Szlagowski
*/
public interface IssueInterface {
/**
* returns issue author
*
* @return
*/
UserInterface getAuthor();
/**
* get list of file hash codes
*
* @return
*/
List getFileHashList();
/**
* returns status code
*
* @return
*/
String getStatusCode();
/**
* returns priority code
*
* @return
*/
String getPriorityCode();
/**
* returns type code
*
* @return
*/
String getTypeCode();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy