├── .adr ├── 001-document-every-subdivision.md ├── 002-subdivision-with-own-iso-3166-1-alpha-2.md ├── 999-adr-template.md └── README.md ├── .chglog ├── 0.10.0.md ├── 0.11.0.md ├── 0.12.0.md ├── 0.13.0.md ├── 0.14.0.md ├── 0.15.0.md ├── 0.16.0.md ├── 0.17.0.md ├── 0.18.0.md ├── 0.19.0.md ├── 0.19.1.md ├── 0.20.0.md ├── 0.21.0.md ├── 0.22.0.md ├── 0.23.0.md ├── 0.23.1.md ├── 0.23.2.md ├── 0.24.0.md ├── 0.25.0.md ├── 0.26.0.md ├── 0.27.0.md ├── 0.28.0.md ├── 0.28.1.md ├── 0.29.0.md ├── 0.30.0.md ├── 0.31.0.md ├── 0.32.0.md ├── 0.33.0.md ├── 0.34.0.md ├── 0.35.0.md ├── 0.35.1.md ├── 0.6.0.md ├── 0.6.1.md ├── 0.7.0.md ├── 0.7.1.md ├── 0.8.0.md ├── 0.9.0.md ├── 1.0.0.md ├── 1.1.0.md ├── 1.2.0.md ├── 1.3.0.md ├── 1.4.0.md ├── 1.5.0.md ├── 1.5.1.md ├── 1.5.2.md ├── 1.5.3.md ├── 1.5.4.md ├── 1.5.5.md ├── 1.5.6.md ├── 1.5.7.md ├── 1.6.0.md ├── 1.7.0.md └── 1.8.0.md ├── .editorconfig ├── .githooks └── prepare-commit-msg ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── adr-proposal.yml │ ├── missing-public-holiday.yml │ ├── other-request.yml │ └── wrong-public-holiday.yml ├── dependabot.yml ├── release-notes.yml └── workflows │ ├── benchmark.yml │ ├── build.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── release-trigger.yml │ └── release.yml ├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── .tool-versions ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── jollyday-core ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── de │ │ │ └── focus_shift │ │ │ │ └── jollyday │ │ │ │ └── core │ │ │ │ ├── CalendarHierarchy.java │ │ │ │ ├── Holiday.java │ │ │ │ ├── HolidayCalendar.java │ │ │ │ ├── HolidayManager.java │ │ │ │ ├── HolidayManagerValueHandler.java │ │ │ │ ├── HolidayType.java │ │ │ │ ├── ManagerParameter.java │ │ │ │ ├── ManagerParameters.java │ │ │ │ ├── caching │ │ │ │ └── Cache.java │ │ │ │ ├── configuration │ │ │ │ ├── AbstractClasspathConfigurationProvider.java │ │ │ │ ├── ApplicationClasspathConfigurationProvider.java │ │ │ │ ├── BaseClasspathConfigurationProvider.java │ │ │ │ ├── ConfigurationProvider.java │ │ │ │ ├── ConfigurationProviderManager.java │ │ │ │ ├── ProviderClassesConfigurationProvider.java │ │ │ │ └── URLConfigurationProvider.java │ │ │ │ ├── datasource │ │ │ │ └── ConfigurationServiceManager.java │ │ │ │ ├── impl │ │ │ │ ├── DefaultHolidayManager.java │ │ │ │ └── JapaneseHolidayManager.java │ │ │ │ ├── parameter │ │ │ │ ├── BaseManagerParameter.java │ │ │ │ ├── CalendarPartManagerParameter.java │ │ │ │ └── UrlManagerParameter.java │ │ │ │ ├── parser │ │ │ │ ├── HolidayParser.java │ │ │ │ ├── functions │ │ │ │ │ ├── CalculateEasterSunday.java │ │ │ │ │ ├── CalculateGregorianEasterSunday.java │ │ │ │ │ ├── CalculateJulianEasterSunday.java │ │ │ │ │ ├── CalculateRelativeDatesFromChronologyWithinGregorianYear.java │ │ │ │ │ ├── CalendarToLocalDate.java │ │ │ │ │ ├── CreateHoliday.java │ │ │ │ │ ├── FindWeekDayBetween.java │ │ │ │ │ ├── FindWeekDayInMonth.java │ │ │ │ │ ├── FindWeekDayRelativeToDate.java │ │ │ │ │ ├── FixedToLocalDate.java │ │ │ │ │ └── MoveDateRelative.java │ │ │ │ ├── impl │ │ │ │ │ ├── ChristianHolidayParser.java │ │ │ │ │ ├── DescribedDateHolder.java │ │ │ │ │ ├── EthiopianOrthodoxHolidayParser.java │ │ │ │ │ ├── FixedParser.java │ │ │ │ │ ├── FixedWeekdayBetweenFixedParser.java │ │ │ │ │ ├── FixedWeekdayInMonthParser.java │ │ │ │ │ ├── FixedWeekdayRelativeToFixedParser.java │ │ │ │ │ ├── IslamicHolidayParser.java │ │ │ │ │ ├── RelativeToEasterSundayParser.java │ │ │ │ │ ├── RelativeToFixedParser.java │ │ │ │ │ └── RelativeToWeekdayInMonthParser.java │ │ │ │ └── predicates │ │ │ │ │ ├── ValidCycle.java │ │ │ │ │ ├── ValidFromTo.java │ │ │ │ │ ├── ValidLimitation.java │ │ │ │ │ └── ValidMovingCondition.java │ │ │ │ ├── spi │ │ │ │ ├── ChristianHoliday.java │ │ │ │ ├── Configuration.java │ │ │ │ ├── ConfigurationService.java │ │ │ │ ├── Described.java │ │ │ │ ├── EthiopianOrthodoxHoliday.java │ │ │ │ ├── Fixed.java │ │ │ │ ├── FixedWeekdayBetweenFixed.java │ │ │ │ ├── FixedWeekdayInMonth.java │ │ │ │ ├── FixedWeekdayRelativeToFixed.java │ │ │ │ ├── Holidays.java │ │ │ │ ├── IslamicHoliday.java │ │ │ │ ├── Limited.java │ │ │ │ ├── Movable.java │ │ │ │ ├── Occurrence.java │ │ │ │ ├── Relation.java │ │ │ │ ├── RelativeToEasterSunday.java │ │ │ │ ├── RelativeToFixed.java │ │ │ │ └── RelativeToWeekdayInMonth.java │ │ │ │ ├── support │ │ │ │ └── LazyServiceLoaderCache.java │ │ │ │ └── util │ │ │ │ ├── CalendarUtil.java │ │ │ │ ├── ClassLoadingUtil.java │ │ │ │ └── ResourceUtil.java │ │ └── module-info.java │ └── resources │ │ ├── descriptions │ │ ├── country_descriptions.properties │ │ ├── country_descriptions_de.properties │ │ ├── country_descriptions_el.properties │ │ ├── country_descriptions_fr.properties │ │ ├── country_descriptions_nl.properties │ │ ├── country_descriptions_pt.properties │ │ ├── country_descriptions_sv.properties │ │ ├── holiday_descriptions.properties │ │ ├── holiday_descriptions_de.properties │ │ ├── holiday_descriptions_el.properties │ │ ├── holiday_descriptions_fr.properties │ │ ├── holiday_descriptions_nl.properties │ │ ├── holiday_descriptions_pt.properties │ │ └── holiday_descriptions_sv.properties │ │ ├── focus_shift.de │ │ └── jollyday │ │ │ └── schema │ │ │ └── holiday │ │ │ └── holiday.xsd │ │ ├── holidays │ │ ├── Holidays_ad.xml │ │ ├── Holidays_ae.xml │ │ ├── Holidays_al.xml │ │ ├── Holidays_am.xml │ │ ├── Holidays_ar.xml │ │ ├── Holidays_at.xml │ │ ├── Holidays_au.xml │ │ ├── Holidays_ba.xml │ │ ├── Holidays_be.xml │ │ ├── Holidays_bg.xml │ │ ├── Holidays_bm.xml │ │ ├── Holidays_bo.xml │ │ ├── Holidays_br.xml │ │ ├── Holidays_bs.xml │ │ ├── Holidays_by.xml │ │ ├── Holidays_ca.xml │ │ ├── Holidays_ch.xml │ │ ├── Holidays_cl.xml │ │ ├── Holidays_co.xml │ │ ├── Holidays_cr.xml │ │ ├── Holidays_cu.xml │ │ ├── Holidays_cy.xml │ │ ├── Holidays_cz.xml │ │ ├── Holidays_de.xml │ │ ├── Holidays_dj_stoxx.xml │ │ ├── Holidays_dk.xml │ │ ├── Holidays_ec.xml │ │ ├── Holidays_ee.xml │ │ ├── Holidays_eg.xml │ │ ├── Holidays_es.xml │ │ ├── Holidays_et.xml │ │ ├── Holidays_fi.xml │ │ ├── Holidays_fr.xml │ │ ├── Holidays_gb.xml │ │ ├── Holidays_ge.xml │ │ ├── Holidays_gg.xml │ │ ├── Holidays_gi.xml │ │ ├── Holidays_gr.xml │ │ ├── Holidays_hk.xml │ │ ├── Holidays_hr.xml │ │ ├── Holidays_hu.xml │ │ ├── Holidays_ie.xml │ │ ├── Holidays_im.xml │ │ ├── Holidays_in.xml │ │ ├── Holidays_is.xml │ │ ├── Holidays_it.xml │ │ ├── Holidays_je.xml │ │ ├── Holidays_jp.xml │ │ ├── Holidays_ky.xml │ │ ├── Holidays_kz.xml │ │ ├── Holidays_li.xml │ │ ├── Holidays_lme.xml │ │ ├── Holidays_lt.xml │ │ ├── Holidays_lu.xml │ │ ├── Holidays_lv.xml │ │ ├── Holidays_ma.xml │ │ ├── Holidays_mc.xml │ │ ├── Holidays_md.xml │ │ ├── Holidays_me.xml │ │ ├── Holidays_mk.xml │ │ ├── Holidays_mt.xml │ │ ├── Holidays_mu.xml │ │ ├── Holidays_mx.xml │ │ ├── Holidays_ng.xml │ │ ├── Holidays_ni.xml │ │ ├── Holidays_nl.xml │ │ ├── Holidays_no.xml │ │ ├── Holidays_nyse.xml │ │ ├── Holidays_nyse_euronext.xml │ │ ├── Holidays_nz.xml │ │ ├── Holidays_pa.xml │ │ ├── Holidays_pe.xml │ │ ├── Holidays_pl.xml │ │ ├── Holidays_pt.xml │ │ ├── Holidays_py.xml │ │ ├── Holidays_ro.xml │ │ ├── Holidays_rs.xml │ │ ├── Holidays_ru.xml │ │ ├── Holidays_sa.xml │ │ ├── Holidays_se.xml │ │ ├── Holidays_sg.xml │ │ ├── Holidays_si.xml │ │ ├── Holidays_sk.xml │ │ ├── Holidays_sm.xml │ │ ├── Holidays_target.xml │ │ ├── Holidays_tr.xml │ │ ├── Holidays_ua.xml │ │ ├── Holidays_us.xml │ │ ├── Holidays_uy.xml │ │ ├── Holidays_ve.xml │ │ ├── Holidays_vg.xml │ │ ├── Holidays_xk.xml │ │ └── Holidays_za.xml │ │ └── jollyday.properties │ └── test │ ├── java │ └── de │ │ └── focus_shift │ │ └── jollyday │ │ └── core │ │ ├── HolidayCalendarTest.java │ │ ├── HolidayDescriptionTest.java │ │ ├── HolidayManagerValueHandlerTest.java │ │ ├── HolidayTest.java │ │ ├── ManagerParametersTest.java │ │ ├── XMLValidationTest.java │ │ ├── caching │ │ └── CacheTest.java │ │ ├── configuration │ │ ├── ApplicationClasspathConfigurationProviderContentTest.java │ │ ├── ConfigurationProviderManagerTest.java │ │ ├── ProviderClassesConfigurationProviderTest.java │ │ └── URLConfigurationProviderTest.java │ │ ├── datasource │ │ └── ConfigurationServiceManagerTest.java │ │ ├── descriptions │ │ └── CountryDescriptionsTest.java │ │ ├── parameter │ │ ├── BaseManagerParameterTest.java │ │ ├── CalendarPartManagerParameterTest.java │ │ └── UrlManagerParameterTest.java │ │ ├── parser │ │ ├── functions │ │ │ ├── CalculateEasterSundayTest.java │ │ │ ├── CalculateGregorianEasterSundayTest.java │ │ │ ├── CalculateJulianEasterSundayTest.java │ │ │ ├── CalculateRelativeDatesFromChronologyWithinGregorianYearTest.java │ │ │ ├── CalendarToLocalDateTest.java │ │ │ ├── CreateHolidayTest.java │ │ │ ├── FindWeekDayBetweenTest.java │ │ │ ├── FindWeekDayInMonthTest.java │ │ │ ├── FixedToLocalDateTest.java │ │ │ └── MoveDateRelativeTest.java │ │ ├── impl │ │ │ ├── ChristianHolidayParserTest.java │ │ │ ├── EthiopianOrthodoxHolidayParserTest.java │ │ │ ├── FixedParserTest.java │ │ │ ├── FixedWeekdayBetweenFixedParserTest.java │ │ │ ├── FixedWeekdayInMonthParserTest.java │ │ │ ├── FixedWeekdayRelativeToFixedParserTest.java │ │ │ ├── IslamicHolidayParserTest.java │ │ │ ├── RelativeToEasterSundayParserTest.java │ │ │ ├── RelativeToFixedParserTest.java │ │ │ └── RelativeToWeekdayInMonthParserTest.java │ │ └── predicates │ │ │ ├── ValidCycleTest.java │ │ │ ├── ValidFromToTest.java │ │ │ ├── ValidLimitationTest.java │ │ │ └── ValidMovingConditionTest.java │ │ └── util │ │ └── ClassLoadingUtilTest.java │ └── resources │ ├── URLConfigurationProviderTest.properties │ ├── jollyday.properties │ ├── junit-platform.properties │ └── logback-test.xml ├── jollyday-jackson ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── de │ │ │ └── focus_shift │ │ │ │ └── jollyday │ │ │ │ └── jackson │ │ │ │ ├── JacksonChristianHoliday.java │ │ │ │ ├── JacksonConfiguration.java │ │ │ │ ├── JacksonConfigurationService.java │ │ │ │ ├── JacksonEthiopianOrthodoxHoliday.java │ │ │ │ ├── JacksonFixed.java │ │ │ │ ├── JacksonFixedWeekdayBetweenFixed.java │ │ │ │ ├── JacksonFixedWeekdayInMonth.java │ │ │ │ ├── JacksonFixedWeekdayRelativeToFixed.java │ │ │ │ ├── JacksonHolidays.java │ │ │ │ ├── JacksonIslamicHoliday.java │ │ │ │ ├── JacksonMovingCondition.java │ │ │ │ ├── JacksonRelativeToEasterSunday.java │ │ │ │ ├── JacksonRelativeToFixed.java │ │ │ │ ├── JacksonRelativeToWeekdayInMonth.java │ │ │ │ ├── JacksonXMLMapper.java │ │ │ │ └── mapping │ │ │ │ ├── ChristianHoliday.java │ │ │ │ ├── ChristianHolidayType.java │ │ │ │ ├── ChronologyType.java │ │ │ │ ├── Configuration.java │ │ │ │ ├── EthiopianOrthodoxHoliday.java │ │ │ │ ├── EthiopianOrthodoxHolidayType.java │ │ │ │ ├── Fixed.java │ │ │ │ ├── FixedWeekdayBetweenFixed.java │ │ │ │ ├── FixedWeekdayInMonth.java │ │ │ │ ├── FixedWeekdayRelativeToFixed.java │ │ │ │ ├── Holiday.java │ │ │ │ ├── HolidayCycleType.java │ │ │ │ ├── HolidayType.java │ │ │ │ ├── Holidays.java │ │ │ │ ├── IslamicHoliday.java │ │ │ │ ├── IslamicHolidayType.java │ │ │ │ ├── Month.java │ │ │ │ ├── MoveableHoliday.java │ │ │ │ ├── MovingCondition.java │ │ │ │ ├── RelativeToEasterSunday.java │ │ │ │ ├── RelativeToFixed.java │ │ │ │ ├── RelativeToWeekdayInMonth.java │ │ │ │ ├── Source.java │ │ │ │ ├── Sources.java │ │ │ │ ├── Substituted.java │ │ │ │ ├── Weekday.java │ │ │ │ ├── When.java │ │ │ │ ├── Which.java │ │ │ │ └── With.java │ │ └── module-info.java │ └── resources │ │ └── META-INF │ │ └── services │ │ └── de.focus_shift.jollyday.core.spi.ConfigurationService │ └── test │ └── java │ └── de │ └── focus_shift │ └── jollyday │ └── jackson │ ├── JacksonChristianHolidayTest.java │ ├── JacksonConfigurationServiceTest.java │ ├── JacksonConfigurationTest.java │ ├── JacksonEthiopianOrthodoxHolidayTest.java │ ├── JacksonFixedTest.java │ ├── JacksonFixedWeekdayBetweenFixedTest.java │ ├── JacksonFixedWeekdayInMonthTest.java │ ├── JacksonFixedWeekdayRelativeToFixedTest.java │ ├── JacksonHolidaysTest.java │ ├── JacksonIslamicHolidayTest.java │ ├── JacksonMovingConditionTest.java │ ├── JacksonRelativeToEasterSundayTest.java │ ├── JacksonRelativeToFixedTest.java │ ├── JacksonRelativeToWeekdayInMonthTest.java │ └── JacksonXMLMapperTest.java ├── jollyday-jaxb ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── de │ │ │ └── focus_shift │ │ │ │ └── jollyday │ │ │ │ └── jaxb │ │ │ │ ├── JaxbChristianHoliday.java │ │ │ │ ├── JaxbConfiguration.java │ │ │ │ ├── JaxbConfigurationService.java │ │ │ │ ├── JaxbEthiopianOrthodoxHoliday.java │ │ │ │ ├── JaxbFixed.java │ │ │ │ ├── JaxbFixedWeekdayBetweenFixed.java │ │ │ │ ├── JaxbFixedWeekdayInMonth.java │ │ │ │ ├── JaxbFixedWeekdayRelativeToFixed.java │ │ │ │ ├── JaxbHolidays.java │ │ │ │ ├── JaxbIslamicHoliday.java │ │ │ │ ├── JaxbMovingCondition.java │ │ │ │ ├── JaxbRelativeToEasterSunday.java │ │ │ │ ├── JaxbRelativeToFixed.java │ │ │ │ ├── JaxbRelativeToWeekdayInMonth.java │ │ │ │ └── JaxbXMLMapper.java │ │ └── module-info.java │ └── resources │ │ └── META-INF │ │ └── services │ │ └── de.focus_shift.jollyday.core.spi.ConfigurationService │ └── test │ └── java │ └── de │ └── focus_shift │ └── jollyday │ └── jaxb │ ├── JaxbChristianHolidayTest.java │ ├── JaxbConfigurationServiceTest.java │ ├── JaxbConfigurationTest.java │ ├── JaxbEthiopianOrthodoxHolidayTest.java │ ├── JaxbFixedTest.java │ ├── JaxbFixedWeekdayBetweenFixedTest.java │ ├── JaxbFixedWeekdayInMonthTest.java │ ├── JaxbFixedWeekdayRelativeToFixedTest.java │ ├── JaxbHolidaysTest.java │ ├── JaxbIslamicHolidayTest.java │ ├── JaxbMovingConditionTest.java │ ├── JaxbRelativeToEasterSundayTest.java │ ├── JaxbRelativeToFixedTest.java │ ├── JaxbRelativeToWeekdayInMonthTest.java │ └── JaxbXMLMapperTest.java ├── jollyday-tests ├── pom.xml └── src │ └── test │ ├── java │ └── de │ │ └── focus_shift │ │ └── jollyday │ │ └── tests │ │ ├── Benchmarks.java │ │ ├── CalendarChecker.java │ │ ├── CalendarCheckerApi.java │ │ ├── DefaultHolidayManagerTest.java │ │ ├── HolidayManagerCreatingBenchmarkTest.java │ │ ├── HolidayManagerGetHolidayBenchmarkTest.java │ │ ├── HolidayManagerIsHolidayBenchmarkTest.java │ │ ├── JapaneseHolidayManagerTest.java │ │ ├── SubdivisionsTest.java │ │ └── country │ │ ├── AbstractCountryTestBase.java │ │ ├── HolidayADTest.java │ │ ├── HolidayAETest.java │ │ ├── HolidayALTest.java │ │ ├── HolidayAMTest.java │ │ ├── HolidayARTest.java │ │ ├── HolidayATTest.java │ │ ├── HolidayAUTest.java │ │ ├── HolidayBATest.java │ │ ├── HolidayBETest.java │ │ ├── HolidayBGTest.java │ │ ├── HolidayBMTest.java │ │ ├── HolidayBOTest.java │ │ ├── HolidayBRTest.java │ │ ├── HolidayBSTest.java │ │ ├── HolidayBYTest.java │ │ ├── HolidayCATest.java │ │ ├── HolidayCHTest.java │ │ ├── HolidayCLTest.java │ │ ├── HolidayCOTest.java │ │ ├── HolidayCRTest.java │ │ ├── HolidayCUTest.java │ │ ├── HolidayCYTest.java │ │ ├── HolidayCZTest.java │ │ ├── HolidayDETest.java │ │ ├── HolidayDJSTOXXTest.java │ │ ├── HolidayDKTest.java │ │ ├── HolidayECTest.java │ │ ├── HolidayEETest.java │ │ ├── HolidayEGTest.java │ │ ├── HolidayESTest.java │ │ ├── HolidayETTest.java │ │ ├── HolidayFITest.java │ │ ├── HolidayFRTest.java │ │ ├── HolidayGBTest.java │ │ ├── HolidayGETest.java │ │ ├── HolidayGGTest.java │ │ ├── HolidayGITest.java │ │ ├── HolidayGRTest.java │ │ ├── HolidayHKTest.java │ │ ├── HolidayHRTest.java │ │ ├── HolidayHUTest.java │ │ ├── HolidayIETest.java │ │ ├── HolidayIMTest.java │ │ ├── HolidayINTest.java │ │ ├── HolidayISTest.java │ │ ├── HolidayITTest.java │ │ ├── HolidayJETest.java │ │ ├── HolidayJPTest.java │ │ ├── HolidayKYTest.java │ │ ├── HolidayKZTest.java │ │ ├── HolidayLITest.java │ │ ├── HolidayLMETest.java │ │ ├── HolidayLTTest.java │ │ ├── HolidayLUTest.java │ │ ├── HolidayLVTest.java │ │ ├── HolidayMATest.java │ │ ├── HolidayMCTest.java │ │ ├── HolidayMDTest.java │ │ ├── HolidayMETest.java │ │ ├── HolidayMKTest.java │ │ ├── HolidayMTTest.java │ │ ├── HolidayMUTest.java │ │ ├── HolidayMXTest.java │ │ ├── HolidayNGTest.java │ │ ├── HolidayNITest.java │ │ ├── HolidayNLTest.java │ │ ├── HolidayNOTest.java │ │ ├── HolidayNYSETest.java │ │ ├── HolidayNZTest.java │ │ ├── HolidayPATest.java │ │ ├── HolidayPETest.java │ │ ├── HolidayPLTest.java │ │ ├── HolidayPTTest.java │ │ ├── HolidayPYTest.java │ │ ├── HolidayROTest.java │ │ ├── HolidayRSTest.java │ │ ├── HolidayRUTest.java │ │ ├── HolidaySATest.java │ │ ├── HolidaySETest.java │ │ ├── HolidaySGTest.java │ │ ├── HolidaySITest.java │ │ ├── HolidaySKTest.java │ │ ├── HolidaySMTest.java │ │ ├── HolidayTRTest.java │ │ ├── HolidayUATest.java │ │ ├── HolidayUSTest.java │ │ ├── HolidayUYTest.java │ │ ├── HolidayVETest.java │ │ ├── HolidayVGTest.java │ │ ├── HolidayXKTest.java │ │ └── HolidayZATest.java │ └── resources │ ├── holidays │ ├── Holidays_test.xml │ ├── Holidays_test_au_2019.xml │ ├── Holidays_test_au_2020.xml │ ├── Holidays_test_au_2021.xml │ ├── Holidays_test_au_2022.xml │ ├── Holidays_test_bm_2015.xml │ ├── Holidays_test_bm_2016.xml │ ├── Holidays_test_bm_2017.xml │ ├── Holidays_test_bm_2018.xml │ ├── Holidays_test_bm_2020.xml │ ├── Holidays_test_bm_2021.xml │ ├── Holidays_test_bm_2022.xml │ ├── Holidays_test_bm_2023.xml │ ├── Holidays_test_bm_2024.xml │ ├── Holidays_test_bm_2025.xml │ ├── Holidays_test_ch_2022.xml │ ├── Holidays_test_fail.xml │ ├── Holidays_test_gb_2008.xml │ ├── Holidays_test_gb_2009.xml │ ├── Holidays_test_gb_2010.xml │ ├── Holidays_test_gb_2011.xml │ ├── Holidays_test_gb_2012.xml │ ├── Holidays_test_gb_2013.xml │ ├── Holidays_test_gb_2014.xml │ ├── Holidays_test_gb_2015.xml │ ├── Holidays_test_gb_2016.xml │ ├── Holidays_test_gb_2017.xml │ ├── Holidays_test_gb_2018.xml │ ├── Holidays_test_gb_2019.xml │ ├── Holidays_test_gb_2020.xml │ ├── Holidays_test_gb_2021.xml │ ├── Holidays_test_gb_2022.xml │ ├── Holidays_test_gb_2023.xml │ ├── Holidays_test_gb_2024.xml │ ├── Holidays_test_gb_2025.xml │ ├── Holidays_test_gb_2026.xml │ ├── Holidays_test_gg_2010.xml │ ├── Holidays_test_gg_2017.xml │ ├── Holidays_test_gg_2018.xml │ ├── Holidays_test_gg_2019.xml │ ├── Holidays_test_gg_2020.xml │ ├── Holidays_test_gg_2021.xml │ ├── Holidays_test_gg_2022.xml │ ├── Holidays_test_gg_2023.xml │ ├── Holidays_test_gg_2024.xml │ ├── Holidays_test_hk_2007.xml │ ├── Holidays_test_hk_2008.xml │ ├── Holidays_test_hk_2009.xml │ ├── Holidays_test_hk_2010.xml │ ├── Holidays_test_hk_2011.xml │ ├── Holidays_test_hk_2012.xml │ ├── Holidays_test_hk_2013.xml │ ├── Holidays_test_hk_2014.xml │ ├── Holidays_test_hk_2015.xml │ ├── Holidays_test_hk_2016.xml │ ├── Holidays_test_hk_2017.xml │ ├── Holidays_test_hk_2018.xml │ ├── Holidays_test_hk_2019.xml │ ├── Holidays_test_hk_2020.xml │ ├── Holidays_test_hk_2021.xml │ ├── Holidays_test_hk_2022.xml │ ├── Holidays_test_hk_2023.xml │ ├── Holidays_test_hk_2024.xml │ ├── Holidays_test_im_2010.xml │ ├── Holidays_test_im_2013.xml │ ├── Holidays_test_im_2014.xml │ ├── Holidays_test_im_2015.xml │ ├── Holidays_test_im_2016.xml │ ├── Holidays_test_im_2017.xml │ ├── Holidays_test_im_2018.xml │ ├── Holidays_test_im_2019.xml │ ├── Holidays_test_im_2020.xml │ ├── Holidays_test_im_2021.xml │ ├── Holidays_test_im_2022.xml │ ├── Holidays_test_im_2023.xml │ ├── Holidays_test_im_2024.xml │ ├── Holidays_test_is_2010.xml │ ├── Holidays_test_je_2010.xml │ ├── Holidays_test_je_2011.xml │ ├── Holidays_test_je_2012.xml │ ├── Holidays_test_je_2013.xml │ ├── Holidays_test_je_2014.xml │ ├── Holidays_test_je_2015.xml │ ├── Holidays_test_je_2016.xml │ ├── Holidays_test_je_2017.xml │ ├── Holidays_test_je_2018.xml │ ├── Holidays_test_je_2019.xml │ ├── Holidays_test_je_2020.xml │ ├── Holidays_test_je_2021.xml │ ├── Holidays_test_je_2022.xml │ ├── Holidays_test_je_2023.xml │ ├── Holidays_test_je_2024.xml │ ├── Holidays_test_jp.xml │ ├── Holidays_test_ky_2008.xml │ ├── Holidays_test_ky_2009.xml │ ├── Holidays_test_ky_2010.xml │ ├── Holidays_test_ky_2011.xml │ ├── Holidays_test_ky_2012.xml │ ├── Holidays_test_ky_2013.xml │ ├── Holidays_test_ky_2014.xml │ ├── Holidays_test_ky_2015.xml │ ├── Holidays_test_ky_2016.xml │ ├── Holidays_test_ky_2017.xml │ ├── Holidays_test_ky_2018.xml │ ├── Holidays_test_ky_2019.xml │ ├── Holidays_test_ky_2020.xml │ ├── Holidays_test_ky_2021.xml │ ├── Holidays_test_ky_2022.xml │ ├── Holidays_test_ky_2023.xml │ ├── Holidays_test_ky_2024.xml │ ├── Holidays_test_mu_2013.xml │ ├── Holidays_test_mu_2014.xml │ ├── Holidays_test_mu_2015.xml │ ├── Holidays_test_mu_2016.xml │ ├── Holidays_test_mu_2017.xml │ ├── Holidays_test_mu_2018.xml │ ├── Holidays_test_mu_2019.xml │ ├── Holidays_test_mu_2020.xml │ ├── Holidays_test_mu_2021.xml │ ├── Holidays_test_mu_2022.xml │ ├── Holidays_test_mu_2023.xml │ ├── Holidays_test_mu_2024.xml │ ├── Holidays_test_nz_2018.xml │ ├── Holidays_test_sg_2013.xml │ ├── Holidays_test_sg_2014.xml │ ├── Holidays_test_sg_2015.xml │ ├── Holidays_test_sg_2016.xml │ ├── Holidays_test_sg_2017.xml │ ├── Holidays_test_sg_2018.xml │ ├── Holidays_test_sg_2019.xml │ ├── Holidays_test_sg_2020.xml │ ├── Holidays_test_sg_2021.xml │ ├── Holidays_test_sg_2022.xml │ ├── Holidays_test_sg_2023.xml │ ├── Holidays_test_sg_2024.xml │ ├── Holidays_test_us_2010.xml │ ├── Holidays_test_us_2022.xml │ ├── Holidays_test_vg_2015.xml │ ├── Holidays_test_vg_2016.xml │ ├── Holidays_test_vg_2017.xml │ ├── Holidays_test_vg_2018.xml │ ├── Holidays_test_vg_2019.xml │ ├── Holidays_test_vg_2020.xml │ ├── Holidays_test_vg_2021.xml │ ├── Holidays_test_vg_2022.xml │ ├── Holidays_test_vg_2023.xml │ └── Holidays_test_vg_2024.xml │ ├── jollyday-jackson.properties │ ├── jollyday-japanese.properties │ ├── jollyday-jaxb.properties │ ├── junit-platform.properties │ └── logback-test.xml ├── mvnw ├── mvnw.cmd └── pom.xml /.adr/001-document-every-subdivision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.adr/001-document-every-subdivision.md -------------------------------------------------------------------------------- /.adr/002-subdivision-with-own-iso-3166-1-alpha-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.adr/002-subdivision-with-own-iso-3166-1-alpha-2.md -------------------------------------------------------------------------------- /.adr/999-adr-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.adr/999-adr-template.md -------------------------------------------------------------------------------- /.adr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.adr/README.md -------------------------------------------------------------------------------- /.chglog/0.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.10.0.md -------------------------------------------------------------------------------- /.chglog/0.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.11.0.md -------------------------------------------------------------------------------- /.chglog/0.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.12.0.md -------------------------------------------------------------------------------- /.chglog/0.13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.13.0.md -------------------------------------------------------------------------------- /.chglog/0.14.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.14.0.md -------------------------------------------------------------------------------- /.chglog/0.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.15.0.md -------------------------------------------------------------------------------- /.chglog/0.16.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.16.0.md -------------------------------------------------------------------------------- /.chglog/0.17.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.17.0.md -------------------------------------------------------------------------------- /.chglog/0.18.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.18.0.md -------------------------------------------------------------------------------- /.chglog/0.19.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.19.0.md -------------------------------------------------------------------------------- /.chglog/0.19.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.19.1.md -------------------------------------------------------------------------------- /.chglog/0.20.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.20.0.md -------------------------------------------------------------------------------- /.chglog/0.21.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.21.0.md -------------------------------------------------------------------------------- /.chglog/0.22.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.22.0.md -------------------------------------------------------------------------------- /.chglog/0.23.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.23.0.md -------------------------------------------------------------------------------- /.chglog/0.23.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.23.1.md -------------------------------------------------------------------------------- /.chglog/0.23.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.23.2.md -------------------------------------------------------------------------------- /.chglog/0.24.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.24.0.md -------------------------------------------------------------------------------- /.chglog/0.25.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.25.0.md -------------------------------------------------------------------------------- /.chglog/0.26.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.26.0.md -------------------------------------------------------------------------------- /.chglog/0.27.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.27.0.md -------------------------------------------------------------------------------- /.chglog/0.28.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.28.0.md -------------------------------------------------------------------------------- /.chglog/0.28.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.28.1.md -------------------------------------------------------------------------------- /.chglog/0.29.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.29.0.md -------------------------------------------------------------------------------- /.chglog/0.30.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.30.0.md -------------------------------------------------------------------------------- /.chglog/0.31.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.31.0.md -------------------------------------------------------------------------------- /.chglog/0.32.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.32.0.md -------------------------------------------------------------------------------- /.chglog/0.33.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.33.0.md -------------------------------------------------------------------------------- /.chglog/0.34.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.34.0.md -------------------------------------------------------------------------------- /.chglog/0.35.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.35.0.md -------------------------------------------------------------------------------- /.chglog/0.35.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.35.1.md -------------------------------------------------------------------------------- /.chglog/0.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.6.0.md -------------------------------------------------------------------------------- /.chglog/0.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.6.1.md -------------------------------------------------------------------------------- /.chglog/0.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.7.0.md -------------------------------------------------------------------------------- /.chglog/0.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.7.1.md -------------------------------------------------------------------------------- /.chglog/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.8.0.md -------------------------------------------------------------------------------- /.chglog/0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/0.9.0.md -------------------------------------------------------------------------------- /.chglog/1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.0.0.md -------------------------------------------------------------------------------- /.chglog/1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.1.0.md -------------------------------------------------------------------------------- /.chglog/1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.2.0.md -------------------------------------------------------------------------------- /.chglog/1.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.3.0.md -------------------------------------------------------------------------------- /.chglog/1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.4.0.md -------------------------------------------------------------------------------- /.chglog/1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.5.0.md -------------------------------------------------------------------------------- /.chglog/1.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.5.1.md -------------------------------------------------------------------------------- /.chglog/1.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.5.2.md -------------------------------------------------------------------------------- /.chglog/1.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.5.3.md -------------------------------------------------------------------------------- /.chglog/1.5.4.md: -------------------------------------------------------------------------------- 1 | ## 🐞 Bugs 2 | 3 | - Fix release to maven central [#785](https://github.com/focus-shift/jollyday/issues/785) 4 | -------------------------------------------------------------------------------- /.chglog/1.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.5.5.md -------------------------------------------------------------------------------- /.chglog/1.5.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.5.6.md -------------------------------------------------------------------------------- /.chglog/1.5.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.5.7.md -------------------------------------------------------------------------------- /.chglog/1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.6.0.md -------------------------------------------------------------------------------- /.chglog/1.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.7.0.md -------------------------------------------------------------------------------- /.chglog/1.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.chglog/1.8.0.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.editorconfig -------------------------------------------------------------------------------- /.githooks/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.githooks/prepare-commit-msg -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: focus-shift 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/adr-proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/ISSUE_TEMPLATE/adr-proposal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/missing-public-holiday.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/ISSUE_TEMPLATE/missing-public-holiday.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/ISSUE_TEMPLATE/other-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/wrong-public-holiday.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/ISSUE_TEMPLATE/wrong-public-holiday.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/release-trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/workflows/release-trigger.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | java temurin-11.0.27+6 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/SECURITY.md -------------------------------------------------------------------------------- /jollyday-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/pom.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/CalendarHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/CalendarHierarchy.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/Holiday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/Holiday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/HolidayCalendar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/HolidayCalendar.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/HolidayManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/HolidayManager.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/HolidayManagerValueHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/HolidayManagerValueHandler.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/HolidayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/HolidayType.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/ManagerParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/ManagerParameter.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/ManagerParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/ManagerParameters.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/caching/Cache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/caching/Cache.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/AbstractClasspathConfigurationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/AbstractClasspathConfigurationProvider.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/ApplicationClasspathConfigurationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/ApplicationClasspathConfigurationProvider.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/BaseClasspathConfigurationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/BaseClasspathConfigurationProvider.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/ConfigurationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/ConfigurationProvider.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/ConfigurationProviderManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/ConfigurationProviderManager.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/ProviderClassesConfigurationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/ProviderClassesConfigurationProvider.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/URLConfigurationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/configuration/URLConfigurationProvider.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/datasource/ConfigurationServiceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/datasource/ConfigurationServiceManager.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/impl/DefaultHolidayManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/impl/DefaultHolidayManager.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/impl/JapaneseHolidayManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/impl/JapaneseHolidayManager.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parameter/BaseManagerParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parameter/BaseManagerParameter.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parameter/CalendarPartManagerParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parameter/CalendarPartManagerParameter.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parameter/UrlManagerParameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parameter/UrlManagerParameter.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/HolidayParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/HolidayParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalculateEasterSunday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalculateEasterSunday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalculateGregorianEasterSunday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalculateGregorianEasterSunday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalculateJulianEasterSunday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalculateJulianEasterSunday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalculateRelativeDatesFromChronologyWithinGregorianYear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalculateRelativeDatesFromChronologyWithinGregorianYear.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalendarToLocalDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CalendarToLocalDate.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CreateHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/CreateHoliday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayBetween.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayBetween.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayInMonth.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayRelativeToDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayRelativeToDate.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/FixedToLocalDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/FixedToLocalDate.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/MoveDateRelative.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/functions/MoveDateRelative.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/ChristianHolidayParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/ChristianHolidayParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/DescribedDateHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/DescribedDateHolder.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/EthiopianOrthodoxHolidayParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/EthiopianOrthodoxHolidayParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/FixedParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/FixedParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayBetweenFixedParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayBetweenFixedParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayInMonthParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayInMonthParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayRelativeToFixedParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayRelativeToFixedParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/IslamicHolidayParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/IslamicHolidayParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/RelativeToEasterSundayParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/RelativeToEasterSundayParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/RelativeToFixedParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/RelativeToFixedParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/RelativeToWeekdayInMonthParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/impl/RelativeToWeekdayInMonthParser.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/predicates/ValidCycle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/predicates/ValidCycle.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/predicates/ValidFromTo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/predicates/ValidFromTo.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/predicates/ValidLimitation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/predicates/ValidLimitation.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/predicates/ValidMovingCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/parser/predicates/ValidMovingCondition.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/ChristianHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/ChristianHoliday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Configuration.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/ConfigurationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/ConfigurationService.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Described.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Described.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/EthiopianOrthodoxHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/EthiopianOrthodoxHoliday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Fixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Fixed.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/FixedWeekdayBetweenFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/FixedWeekdayBetweenFixed.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/FixedWeekdayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/FixedWeekdayInMonth.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/FixedWeekdayRelativeToFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/FixedWeekdayRelativeToFixed.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Holidays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Holidays.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/IslamicHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/IslamicHoliday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Limited.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Limited.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Movable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Movable.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Occurrence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Occurrence.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Relation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/Relation.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/RelativeToEasterSunday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/RelativeToEasterSunday.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/RelativeToFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/RelativeToFixed.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/RelativeToWeekdayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/spi/RelativeToWeekdayInMonth.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/support/LazyServiceLoaderCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/support/LazyServiceLoaderCache.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/util/CalendarUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/util/CalendarUtil.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/util/ClassLoadingUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/util/ClassLoadingUtil.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/de/focus_shift/jollyday/core/util/ResourceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/de/focus_shift/jollyday/core/util/ResourceUtil.java -------------------------------------------------------------------------------- /jollyday-core/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/java/module-info.java -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/country_descriptions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/country_descriptions.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/country_descriptions_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/country_descriptions_de.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/country_descriptions_el.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/country_descriptions_el.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/country_descriptions_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/country_descriptions_fr.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/country_descriptions_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/country_descriptions_nl.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/country_descriptions_pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/country_descriptions_pt.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/country_descriptions_sv.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/country_descriptions_sv.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/holiday_descriptions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/holiday_descriptions.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/holiday_descriptions_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/holiday_descriptions_de.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/holiday_descriptions_el.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/holiday_descriptions_el.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/holiday_descriptions_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/holiday_descriptions_fr.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/holiday_descriptions_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/holiday_descriptions_nl.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/holiday_descriptions_pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/holiday_descriptions_pt.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/descriptions/holiday_descriptions_sv.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/descriptions/holiday_descriptions_sv.properties -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/focus_shift.de/jollyday/schema/holiday/holiday.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/focus_shift.de/jollyday/schema/holiday/holiday.xsd -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ad.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ae.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ae.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_al.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_al.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_am.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ar.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_at.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_at.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_au.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_au.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ba.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ba.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_be.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_bg.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_bm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_bm.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_bo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_bo.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_br.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_br.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_bs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_bs.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_by.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_by.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ca.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ch.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_cl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_cl.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_co.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_co.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_cr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_cr.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_cu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_cu.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_cy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_cy.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_cz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_cz.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_de.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_dj_stoxx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_dj_stoxx.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_dk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_dk.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ec.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ee.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_eg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_eg.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_es.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_et.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_fi.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_fr.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_gb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_gb.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ge.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_gg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_gg.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_gi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_gi.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_gr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_gr.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_hk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_hk.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_hr.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_hu.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ie.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_im.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_im.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_in.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_is.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_is.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_it.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_je.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_je.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_jp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_jp.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ky.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_kz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_kz.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_li.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_li.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_lme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_lme.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_lt.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_lu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_lu.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_lv.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ma.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_mc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_mc.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_md.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_md.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_me.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_me.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_mk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_mk.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_mt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_mt.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_mu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_mu.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_mx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_mx.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ng.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ni.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ni.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_nl.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_no.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_nyse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_nyse.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_nyse_euronext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_nyse_euronext.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_nz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_nz.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_pa.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_pe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_pe.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_pl.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_pt.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_py.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_py.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ro.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_rs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_rs.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ru.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_sa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_sa.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_se.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_se.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_sg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_sg.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_si.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_sk.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_sm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_sm.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_target.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_tr.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ua.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ua.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_us.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_us.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_uy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_uy.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_ve.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_ve.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_vg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_vg.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_xk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_xk.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/holidays/Holidays_za.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/holidays/Holidays_za.xml -------------------------------------------------------------------------------- /jollyday-core/src/main/resources/jollyday.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/main/resources/jollyday.properties -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/HolidayCalendarTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/HolidayCalendarTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/HolidayDescriptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/HolidayDescriptionTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/HolidayManagerValueHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/HolidayManagerValueHandlerTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/HolidayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/HolidayTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/ManagerParametersTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/ManagerParametersTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/XMLValidationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/XMLValidationTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/caching/CacheTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/caching/CacheTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/configuration/ApplicationClasspathConfigurationProviderContentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/configuration/ApplicationClasspathConfigurationProviderContentTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/configuration/ConfigurationProviderManagerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/configuration/ConfigurationProviderManagerTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/configuration/ProviderClassesConfigurationProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/configuration/ProviderClassesConfigurationProviderTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/configuration/URLConfigurationProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/configuration/URLConfigurationProviderTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/datasource/ConfigurationServiceManagerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/datasource/ConfigurationServiceManagerTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/descriptions/CountryDescriptionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/descriptions/CountryDescriptionsTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parameter/BaseManagerParameterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parameter/BaseManagerParameterTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parameter/CalendarPartManagerParameterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parameter/CalendarPartManagerParameterTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parameter/UrlManagerParameterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parameter/UrlManagerParameterTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalculateEasterSundayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalculateEasterSundayTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalculateGregorianEasterSundayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalculateGregorianEasterSundayTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalculateJulianEasterSundayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalculateJulianEasterSundayTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalculateRelativeDatesFromChronologyWithinGregorianYearTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalculateRelativeDatesFromChronologyWithinGregorianYearTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalendarToLocalDateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CalendarToLocalDateTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CreateHolidayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/CreateHolidayTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayBetweenTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayBetweenTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayInMonthTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/FindWeekDayInMonthTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/FixedToLocalDateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/FixedToLocalDateTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/MoveDateRelativeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/functions/MoveDateRelativeTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/ChristianHolidayParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/ChristianHolidayParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/EthiopianOrthodoxHolidayParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/EthiopianOrthodoxHolidayParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/FixedParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/FixedParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayBetweenFixedParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayBetweenFixedParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayInMonthParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayInMonthParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayRelativeToFixedParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/FixedWeekdayRelativeToFixedParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/IslamicHolidayParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/IslamicHolidayParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/RelativeToEasterSundayParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/RelativeToEasterSundayParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/RelativeToFixedParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/RelativeToFixedParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/RelativeToWeekdayInMonthParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/impl/RelativeToWeekdayInMonthParserTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/predicates/ValidCycleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/predicates/ValidCycleTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/predicates/ValidFromToTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/predicates/ValidFromToTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/predicates/ValidLimitationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/predicates/ValidLimitationTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/predicates/ValidMovingConditionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/parser/predicates/ValidMovingConditionTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/java/de/focus_shift/jollyday/core/util/ClassLoadingUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/java/de/focus_shift/jollyday/core/util/ClassLoadingUtilTest.java -------------------------------------------------------------------------------- /jollyday-core/src/test/resources/URLConfigurationProviderTest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/resources/URLConfigurationProviderTest.properties -------------------------------------------------------------------------------- /jollyday-core/src/test/resources/jollyday.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/resources/jollyday.properties -------------------------------------------------------------------------------- /jollyday-core/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | jqwik.reporting.onlyfailures = true 2 | -------------------------------------------------------------------------------- /jollyday-core/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-core/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /jollyday-jackson/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/pom.xml -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonChristianHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonChristianHoliday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonConfiguration.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonConfigurationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonConfigurationService.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonEthiopianOrthodoxHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonEthiopianOrthodoxHoliday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonFixed.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayBetweenFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayBetweenFixed.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayInMonth.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayRelativeToFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayRelativeToFixed.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonHolidays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonHolidays.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonIslamicHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonIslamicHoliday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonMovingCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonMovingCondition.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonRelativeToEasterSunday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonRelativeToEasterSunday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonRelativeToFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonRelativeToFixed.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonRelativeToWeekdayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonRelativeToWeekdayInMonth.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonXMLMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/JacksonXMLMapper.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/ChristianHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/ChristianHoliday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/ChristianHolidayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/ChristianHolidayType.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/ChronologyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/ChronologyType.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Configuration.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/EthiopianOrthodoxHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/EthiopianOrthodoxHoliday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/EthiopianOrthodoxHolidayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/EthiopianOrthodoxHolidayType.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Fixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Fixed.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/FixedWeekdayBetweenFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/FixedWeekdayBetweenFixed.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/FixedWeekdayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/FixedWeekdayInMonth.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/FixedWeekdayRelativeToFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/FixedWeekdayRelativeToFixed.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Holiday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Holiday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/HolidayCycleType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/HolidayCycleType.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/HolidayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/HolidayType.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Holidays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Holidays.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/IslamicHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/IslamicHoliday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/IslamicHolidayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/IslamicHolidayType.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Month.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Month.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/MoveableHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/MoveableHoliday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/MovingCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/MovingCondition.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/RelativeToEasterSunday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/RelativeToEasterSunday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/RelativeToFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/RelativeToFixed.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/RelativeToWeekdayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/RelativeToWeekdayInMonth.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Source.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Source.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Sources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Sources.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Substituted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Substituted.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Weekday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Weekday.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/When.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/When.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Which.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/Which.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/With.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/de/focus_shift/jollyday/jackson/mapping/With.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/java/module-info.java -------------------------------------------------------------------------------- /jollyday-jackson/src/main/resources/META-INF/services/de.focus_shift.jollyday.core.spi.ConfigurationService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/main/resources/META-INF/services/de.focus_shift.jollyday.core.spi.ConfigurationService -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonChristianHolidayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonChristianHolidayTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonConfigurationServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonConfigurationServiceTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonConfigurationTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonEthiopianOrthodoxHolidayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonEthiopianOrthodoxHolidayTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonFixedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonFixedTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayBetweenFixedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayBetweenFixedTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayInMonthTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayInMonthTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayRelativeToFixedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonFixedWeekdayRelativeToFixedTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonHolidaysTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonHolidaysTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonIslamicHolidayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonIslamicHolidayTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonMovingConditionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonMovingConditionTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonRelativeToEasterSundayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonRelativeToEasterSundayTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonRelativeToFixedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonRelativeToFixedTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonRelativeToWeekdayInMonthTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonRelativeToWeekdayInMonthTest.java -------------------------------------------------------------------------------- /jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonXMLMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jackson/src/test/java/de/focus_shift/jollyday/jackson/JacksonXMLMapperTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/pom.xml -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbChristianHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbChristianHoliday.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbConfiguration.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbConfigurationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbConfigurationService.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbEthiopianOrthodoxHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbEthiopianOrthodoxHoliday.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbFixed.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayBetweenFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayBetweenFixed.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayInMonth.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayRelativeToFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayRelativeToFixed.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbHolidays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbHolidays.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbIslamicHoliday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbIslamicHoliday.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbMovingCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbMovingCondition.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToEasterSunday.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToEasterSunday.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToFixed.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToWeekdayInMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToWeekdayInMonth.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbXMLMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/de/focus_shift/jollyday/jaxb/JaxbXMLMapper.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/main/java/module-info.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/main/resources/META-INF/services/de.focus_shift.jollyday.core.spi.ConfigurationService: -------------------------------------------------------------------------------- 1 | de.focus_shift.jollyday.jaxb.JaxbConfigurationService 2 | -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbChristianHolidayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbChristianHolidayTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbConfigurationServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbConfigurationServiceTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbConfigurationTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbEthiopianOrthodoxHolidayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbEthiopianOrthodoxHolidayTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbFixedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbFixedTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayBetweenFixedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayBetweenFixedTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayInMonthTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayInMonthTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayRelativeToFixedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbFixedWeekdayRelativeToFixedTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbHolidaysTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbHolidaysTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbIslamicHolidayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbIslamicHolidayTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbMovingConditionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbMovingConditionTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToEasterSundayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToEasterSundayTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToFixedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToFixedTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToWeekdayInMonthTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbRelativeToWeekdayInMonthTest.java -------------------------------------------------------------------------------- /jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbXMLMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-jaxb/src/test/java/de/focus_shift/jollyday/jaxb/JaxbXMLMapperTest.java -------------------------------------------------------------------------------- /jollyday-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/pom.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/Benchmarks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/Benchmarks.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/CalendarChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/CalendarChecker.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/CalendarCheckerApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/CalendarCheckerApi.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/DefaultHolidayManagerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/DefaultHolidayManagerTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/HolidayManagerCreatingBenchmarkTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/HolidayManagerCreatingBenchmarkTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/HolidayManagerGetHolidayBenchmarkTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/HolidayManagerGetHolidayBenchmarkTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/HolidayManagerIsHolidayBenchmarkTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/HolidayManagerIsHolidayBenchmarkTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/JapaneseHolidayManagerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/JapaneseHolidayManagerTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/SubdivisionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/SubdivisionsTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/AbstractCountryTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/AbstractCountryTestBase.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayADTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayADTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayAETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayAETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayALTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayALTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayAMTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayAMTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayARTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayARTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayATTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayATTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayAUTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayAUTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBATest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBGTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBGTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBMTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBMTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBOTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBRTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBRTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBSTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBSTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBYTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayBYTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCATest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCHTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCHTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCLTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCOTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCRTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCRTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCUTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCUTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCYTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCYTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCZTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayCZTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayDETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayDETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayDJSTOXXTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayDJSTOXXTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayDKTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayDKTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayECTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayECTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayEETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayEETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayEGTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayEGTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayESTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayESTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayETTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayETTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayFITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayFITest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayFRTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayFRTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGBTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGBTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGGTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGGTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGITest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGRTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayGRTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayHKTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayHKTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayHRTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayHRTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayHUTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayHUTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayIETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayIETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayIMTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayIMTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayINTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayINTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayISTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayISTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayITTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayITTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayJETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayJETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayJPTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayJPTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayKYTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayKYTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayKZTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayKZTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLITest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLMETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLMETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLTTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLTTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLUTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLUTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLVTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayLVTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMATest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMCTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMCTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMDTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMDTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMKTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMKTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMTTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMTTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMUTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMUTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMXTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayMXTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNGTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNGTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNITest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNLTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNOTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNOTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNYSETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNYSETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNZTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayNZTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPATest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPLTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPTTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPTTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPYTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayPYTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayROTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayROTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayRSTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayRSTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayRUTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayRUTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySATest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySGTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySGTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySITest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySKTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySKTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySMTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidaySMTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayTRTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayTRTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayUATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayUATest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayUSTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayUSTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayUYTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayUYTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayVETest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayVETest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayVGTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayVGTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayXKTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayXKTest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayZATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/java/de/focus_shift/jollyday/tests/country/HolidayZATest.java -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_au_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_au_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_au_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_au_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_au_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_au_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_au_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_au_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2025.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_bm_2025.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ch_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ch_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_fail.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2008.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2008.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2009.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2010.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2011.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2011.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2012.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2012.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2013.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2014.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2025.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2025.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2026.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gb_2026.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2010.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_gg_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2007.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2007.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2008.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2008.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2009.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2010.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2011.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2011.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2012.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2012.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2013.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2014.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_hk_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2010.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2013.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2014.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_im_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_im_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_is_2010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_is_2010.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2010.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2011.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2011.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2012.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2012.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2013.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2014.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_je_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_je_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_jp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_jp.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2008.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2008.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2009.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2010.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2011.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2011.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2012.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2012.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2013.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2014.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_ky_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2013.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2014.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_mu_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_nz_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_nz_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2013.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2014.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_sg_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_us_2010.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_us_2010.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_us_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_us_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2015.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2016.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2016.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2017.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2018.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2019.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2020.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2021.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2022.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2023.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2023.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2024.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/holidays/Holidays_test_vg_2024.xml -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/jollyday-jackson.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/jollyday-jackson.properties -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/jollyday-japanese.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/jollyday-japanese.properties -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/jollyday-jaxb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/jollyday-jaxb.properties -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | jqwik.reporting.onlyfailures = true 2 | -------------------------------------------------------------------------------- /jollyday-tests/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/jollyday-tests/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focus-shift/jollyday/HEAD/pom.xml --------------------------------------------------------------------------------