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

com.nulabinc.backlog4j.Repository Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package com.nulabinc.backlog4j;

import java.util.Date;

/**
 * The interface for Backlog repository data.
 *
 * @author nulab-inc
 */
public interface Repository {

    long getId();

    String getIdAsString();

    long getProjectId();

    String getProjectIdAsString();

    String getName();

    String getDescription();

    String getHookUrl();

    String getHttpUrl();

    String getSshUrl();

    long getDisplayOrder();

    Date getPushedAt();

    User getCreatedUser();

    Date getCreated();

    User getUpdatedUser();

    Date getUpdated();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy