de.focus_shift.jollyday.jaxb.mapping.Fixed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jollyday-jaxb Show documentation
Show all versions of jollyday-jaxb Show documentation
Jakarta XML Binding (JAXB) based jollyday implementation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.07.15 at 09:27:16 AM UTC
//
package de.focus_shift.jollyday.jaxb.mapping;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Fixed complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Fixed">
* <complexContent>
* <extension base="{https://focus_shift.de/jollyday/schema/holiday}MoveableHoliday">
* <attribute name="month" type="{https://focus_shift.de/jollyday/schema/holiday}Month" />
* <attribute name="day">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <minInclusive value="1"/>
* <maxInclusive value="31"/>
* </restriction>
* </simpleType>
* </attribute>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Fixed")
public class Fixed
extends MoveableHoliday
{
@XmlAttribute(name = "month")
protected Month month;
@XmlAttribute(name = "day")
protected Integer day;
/**
* Gets the value of the month property.
*
* @return
* possible object is
* {@link Month }
*
*/
public Month getMonth() {
return month;
}
/**
* Sets the value of the month property.
*
* @param value
* allowed object is
* {@link Month }
*
*/
public void setMonth(Month value) {
this.month = value;
}
/**
* Gets the value of the day property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDay() {
return day;
}
/**
* Sets the value of the day property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDay(Integer value) {
this.day = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy