]> git.mxchange.org Git - jjobs-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sun, 19 Apr 2020 03:20:44 +0000 (05:20 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 19 Apr 2020 03:27:54 +0000 (05:27 +0200)
- fixed new location of DayOfTheWeek enumeration (jcoreee.jar now)
- added missing documentation links

Signed-off-by: Roland Häder <roland@mxchange.org>
nbproject/project.properties
src/java/org/mxchange/jjobs/beans/business/branchoffice/JobsAdminBranchOfficeWebRequestBean.java
src/java/org/mxchange/jjobs/beans/business/headquarter/JobsAdminHeadquarterWebRequestBean.java
src/java/org/mxchange/jjobs/beans/business/opening_time/JobsAdminOpeningTimeWebRequestBean.java
src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java
src/java/org/mxchange/jjobs/converter/dayofweek/JobsDayOfTheWeekConverter.java

index cb9a46dfd40a22744f9dec932579bc1d96aff7b5..a078f2353a2cd610649ef5cb0c53e8fe855177fd 100644 (file)
@@ -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
index 3ce8f59feebcd55f395ca8be2d2839c824b01c82..62a018db67356663c3d13c2597924fc0d570a124 100644 (file)
@@ -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;
index 580f601ca78572d2c3b7e42be0ce6ee2139be44b..79fd3c9a96f464b4fbf40d64ef618e6f17d876e7 100644 (file)
@@ -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;
index cc8b01423e6197c733d8df1f9cc6c5579b4271f0..1499264cf33951927c17093ab8823b2c55ce1db7 100644 (file)
@@ -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
index e7a59b27fed1b001e3c77fa953caa8b414abf6db..0bfeb8b88ff53f091d08292d3b505c59c433347b 100644 (file)
@@ -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 <p
-        * <p>
-        * @return An array of all profile modes
+        * Returns an array of all profile modes <p <p>
+        * @
+        *
+        * return An array of all profile modes
         */
        public ProfileMode[] getProfileModes () {
                return ProfileMode.values();
index 2900fd07e410463d2acd9176839568028dd34c8e..22c14f4d20ba19e1d7061229d528634fc48b1980 100644 (file)
@@ -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
  * <p>
  * @author Roland Häder<roland@mxchange.org>
  */
-@FacesConverter("DayOfTheWeekConverter")
+@FacesConverter ("DayOfTheWeekConverter")
 public class JobsDayOfTheWeekConverter extends EnumConverter {
 
        /**