com.almworks.jira.structure.api.calendar.CalendarProvider 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
The newest version!
package com.almworks.jira.structure.api.calendar;
import com.atlassian.annotations.PublicSpi;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.List;
@PublicSpi
public interface CalendarProvider {
@NotNull
List getCalendarInfos();
@Nullable
Calendar getCalendar(long id);
}