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

com.almworks.jira.structure.api.calendar.CalendarInfo Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy