From: Roland Häder Date: Sun, 19 Apr 2020 03:20:44 +0000 (+0200) Subject: Please cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7f436578d667cdf664a1a2bef6bda2d1eb9cf7f9;p=jjobs-war.git Please cherry-pick: - fixed new location of DayOfTheWeek enumeration (jcoreee.jar now) - added missing documentation links Signed-off-by: Roland Häder --- diff --git a/nbproject/project.properties b/nbproject/project.properties index cb9a46df..a078f235 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -118,6 +118,7 @@ javadoc.private=true javadoc.reference.poi-3.15.jar=https://poi.apache.org/apidocs/ javadoc.reference.poi-ooxml-3.15.jar=https://poi.apache.org/apidocs/ javadoc.reference.cdi-api.jar=https://docs.jboss.org/cdi/api/1.2/ +javadoc.reference.jcoreee.jar=https://docs.mxchange.org/javadoc/jcoreee. javadoc.splitindex=true javadoc.use=true javadoc.version=true diff --git a/src/java/org/mxchange/jjobs/beans/business/branchoffice/JobsAdminBranchOfficeWebRequestBean.java b/src/java/org/mxchange/jjobs/beans/business/branchoffice/JobsAdminBranchOfficeWebRequestBean.java index 3ce8f59f..62a018db 100644 --- a/src/java/org/mxchange/jjobs/beans/business/branchoffice/JobsAdminBranchOfficeWebRequestBean.java +++ b/src/java/org/mxchange/jjobs/beans/business/branchoffice/JobsAdminBranchOfficeWebRequestBean.java @@ -38,7 +38,7 @@ import org.mxchange.jcontactsbusiness.model.branchoffice.BusinessBranchOffice; import org.mxchange.jcontactsbusiness.model.employee.Employable; import org.mxchange.jcontactsbusiness.model.opening_time.BusinessOpeningTime; import org.mxchange.jcontactsbusiness.model.opening_time.OpeningTime; -import org.mxchange.jcontactsbusiness.model.opening_time.dayofweek.DayOfTheWeek; +import org.mxchange.jcoreee.dates.DayOfTheWeek; import org.mxchange.jcountry.model.data.Country; import org.mxchange.jjobs.beans.BaseJobsBean; import org.mxchange.jjobs.beans.business.branchoffice.list.JobsBranchOfficeListWebViewController; diff --git a/src/java/org/mxchange/jjobs/beans/business/headquarter/JobsAdminHeadquarterWebRequestBean.java b/src/java/org/mxchange/jjobs/beans/business/headquarter/JobsAdminHeadquarterWebRequestBean.java index 580f601c..79fd3c9a 100644 --- a/src/java/org/mxchange/jjobs/beans/business/headquarter/JobsAdminHeadquarterWebRequestBean.java +++ b/src/java/org/mxchange/jjobs/beans/business/headquarter/JobsAdminHeadquarterWebRequestBean.java @@ -36,7 +36,7 @@ import org.mxchange.jcontactsbusiness.model.headquarter.BusinessHeadquarter; import org.mxchange.jcontactsbusiness.model.headquarter.Headquarter; import org.mxchange.jcontactsbusiness.model.opening_time.BusinessOpeningTime; import org.mxchange.jcontactsbusiness.model.opening_time.OpeningTime; -import org.mxchange.jcontactsbusiness.model.opening_time.dayofweek.DayOfTheWeek; +import org.mxchange.jcoreee.dates.DayOfTheWeek; import org.mxchange.jcountry.model.data.Country; import org.mxchange.jjobs.beans.BaseJobsBean; import org.mxchange.jjobs.beans.business.headquarter.list.JobsHeadquarterListWebViewController; diff --git a/src/java/org/mxchange/jjobs/beans/business/opening_time/JobsAdminOpeningTimeWebRequestBean.java b/src/java/org/mxchange/jjobs/beans/business/opening_time/JobsAdminOpeningTimeWebRequestBean.java index cc8b0142..1499264c 100644 --- a/src/java/org/mxchange/jjobs/beans/business/opening_time/JobsAdminOpeningTimeWebRequestBean.java +++ b/src/java/org/mxchange/jjobs/beans/business/opening_time/JobsAdminOpeningTimeWebRequestBean.java @@ -28,8 +28,8 @@ import org.mxchange.jcontactsbusiness.events.opening_time.added.OpeningTimeAdded import org.mxchange.jcontactsbusiness.model.opening_time.AdminOpeningTimeSessionBeanRemote; import org.mxchange.jcontactsbusiness.model.opening_time.BusinessOpeningTime; import org.mxchange.jcontactsbusiness.model.opening_time.OpeningTime; -import org.mxchange.jcontactsbusiness.model.opening_time.dayofweek.DayOfTheWeek; import org.mxchange.jjobs.beans.BaseJobsBean; +import org.mxchange.jcoreee.dates.DayOfTheWeek; /** * An administrative bean for openingTimes diff --git a/src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java b/src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java index e7a59b27..0bfeb8b8 100644 --- a/src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java +++ b/src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java @@ -21,6 +21,7 @@ import javax.inject.Named; import org.mxchange.jcontacts.model.contact.title.PersonalTitle; import org.mxchange.jcontactsbusiness.model.opening_time.dayofweek.DayOfTheWeek; import org.mxchange.jjobs.beans.BaseJobsBean; +import org.mxchange.jcoreee.dates.DayOfTheWeek; import org.mxchange.jusercore.model.user.profilemodes.ProfileMode; import org.mxchange.jusercore.model.user.status.UserAccountStatus; @@ -65,9 +66,10 @@ public class JobsDataWebApplicationBean extends BaseJobsBean { } /** - * Returns an array of all profile modes

- * @return An array of all profile modes + * Returns an array of all profile modes

+ * @ + * + * return An array of all profile modes */ public ProfileMode[] getProfileModes () { return ProfileMode.values(); diff --git a/src/java/org/mxchange/jjobs/converter/dayofweek/JobsDayOfTheWeekConverter.java b/src/java/org/mxchange/jjobs/converter/dayofweek/JobsDayOfTheWeekConverter.java index 2900fd07..22c14f4d 100644 --- a/src/java/org/mxchange/jjobs/converter/dayofweek/JobsDayOfTheWeekConverter.java +++ b/src/java/org/mxchange/jjobs/converter/dayofweek/JobsDayOfTheWeekConverter.java @@ -18,14 +18,14 @@ package org.mxchange.jjobs.converter.dayofweek; import javax.faces.convert.EnumConverter; import javax.faces.convert.FacesConverter; -import org.mxchange.jcontactsbusiness.model.opening_time.dayofweek.DayOfTheWeek; +import org.mxchange.jcoreee.dates.DayOfTheWeek; /** * A converter for day of the week enumeration *

* @author Roland Häder */ -@FacesConverter("DayOfTheWeekConverter") +@FacesConverter ("DayOfTheWeekConverter") public class JobsDayOfTheWeekConverter extends EnumConverter { /**