de.focus_shift.jollyday.jaxb.mapping.MovingCondition 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.11.15 at 03:06:00 PM 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 MovingCondition complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MovingCondition">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="substitute" type="{https://focus_shift.de/jollyday/schema/holiday}Weekday" />
* <attribute name="with" type="{https://focus_shift.de/jollyday/schema/holiday}With" />
* <attribute name="weekday" type="{https://focus_shift.de/jollyday/schema/holiday}Weekday" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MovingCondition")
public class MovingCondition {
@XmlAttribute(name = "substitute")
protected Weekday substitute;
@XmlAttribute(name = "with")
protected With with;
@XmlAttribute(name = "weekday")
protected Weekday weekday;
/**
* Gets the value of the substitute property.
*
* @return
* possible object is
* {@link Weekday }
*
*/
public Weekday getSubstitute() {
return substitute;
}
/**
* Sets the value of the substitute property.
*
* @param value
* allowed object is
* {@link Weekday }
*
*/
public void setSubstitute(Weekday value) {
this.substitute = value;
}
/**
* Gets the value of the with property.
*
* @return
* possible object is
* {@link With }
*
*/
public With getWith() {
return with;
}
/**
* Sets the value of the with property.
*
* @param value
* allowed object is
* {@link With }
*
*/
public void setWith(With value) {
this.with = value;
}
/**
* Gets the value of the weekday property.
*
* @return
* possible object is
* {@link Weekday }
*
*/
public Weekday getWeekday() {
return weekday;
}
/**
* Sets the value of the weekday property.
*
* @param value
* allowed object is
* {@link Weekday }
*
*/
public void setWeekday(Weekday value) {
this.weekday = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy