Module de.focus_shift.jollyday.jaxb
Class Configuration
- java.lang.Object
-
- de.focus_shift.jollyday.jaxb.mapping.Configuration
-
public class Configuration extends Object
Java class for Configuration complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Configuration"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Holidays" type="{https://focus_shift.de/jollyday/schema/holiday}Holidays"/> <element name="Sources" type="{https://focus_shift.de/jollyday/schema/holiday}Sources" minOccurs="0"/> <element name="SubConfigurations" type="{https://focus_shift.de/jollyday/schema/holiday}Configuration" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="hierarchy" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringdescriptionprotected Stringhierarchyprotected Holidaysholidaysprotected Sourcessourcesprotected List<Configuration>subConfigurations
-
Constructor Summary
Constructors Constructor Description Configuration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets the value of the description property.StringgetHierarchy()Gets the value of the hierarchy property.HolidaysgetHolidays()Gets the value of the holidays property.SourcesgetSources()Gets the value of the sources property.List<Configuration>getSubConfigurations()Gets the value of the subConfigurations property.voidsetDescription(String value)Sets the value of the description property.voidsetHierarchy(String value)Sets the value of the hierarchy property.voidsetHolidays(Holidays value)Sets the value of the holidays property.voidsetSources(Sources value)Sets the value of the sources property.
-
-
-
Method Detail
-
getHolidays
public Holidays getHolidays()
Gets the value of the holidays property.- Returns:
- possible object is
Holidays
-
setHolidays
public void setHolidays(Holidays value)
Sets the value of the holidays property.- Parameters:
value- allowed object isHolidays
-
getSources
public Sources getSources()
Gets the value of the sources property.- Returns:
- possible object is
Sources
-
setSources
public void setSources(Sources value)
Sets the value of the sources property.- Parameters:
value- allowed object isSources
-
getSubConfigurations
public List<Configuration> getSubConfigurations()
Gets the value of the subConfigurations property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the subConfigurations property.For example, to add a new item, do as follows:
getSubConfigurations().add(newItem);Objects of the following type(s) are allowed in the list
Configuration
-
getHierarchy
public String getHierarchy()
Gets the value of the hierarchy property.- Returns:
- possible object is
String
-
setHierarchy
public void setHierarchy(String value)
Sets the value of the hierarchy property.- Parameters:
value- allowed object isString
-
getDescription
public String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
-