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

de.focus_shift.jollyday.jackson.mapping.RelativeToEasterSunday Maven / Gradle / Ivy

The newest version!
package de.focus_shift.jollyday.jackson.mapping;

import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;

public class RelativeToEasterSunday extends Holiday {

  @JacksonXmlProperty(localName = "chronology", isAttribute = true)
  protected ChronologyType chronology;
  @JacksonXmlProperty(localName = "days", isAttribute = true)
  protected int days;

  /**
   * Gets the value of the chronology property.
   *
   * @return possible object is
   * {@link ChronologyType }
   */
  public ChronologyType getChronology() {
    return chronology;
  }

  /**
   * Sets the value of the chronology property.
   *
   * @param value allowed object is
   *              {@link ChronologyType }
   */
  public void setChronology(ChronologyType value) {
    this.chronology = value;
  }

  /**
   * Gets the value of the days property.
   */
  public int getDays() {
    return days;
  }

  /**
   * Sets the value of the days property.
   */
  public void setDays(int value) {
    this.days = value;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy