com.almworks.jira.structure.api.calendar.CalendarInfo 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;
@PublicSpi
public interface CalendarInfo {
/**
* @return id should be unique for related {@link CalendarProvider}
*/
long getId();
@NotNull
String getName();
@Nullable
String getDescription();
}