de.focus_shift.jollyday.jackson.mapping.EthiopianOrthodoxHoliday 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 EthiopianOrthodoxHoliday extends Holiday {
@JacksonXmlProperty(localName = "type", isAttribute = true)
protected EthiopianOrthodoxHolidayType type;
/**
* Gets the value of the type property.
*
* @return possible object is
* {@link EthiopianOrthodoxHolidayType }
*/
public EthiopianOrthodoxHolidayType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value allowed object is
* {@link EthiopianOrthodoxHolidayType }
*/
public void setType(EthiopianOrthodoxHolidayType value) {
this.type = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy