de.focus_shift.jollyday.jackson.mapping.RelativeToEasterSunday Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jollyday-jackson Show documentation
Show all versions of jollyday-jackson Show documentation
Jackson based jollyday implementation
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