]> git.mxchange.org Git - jjobs-war.git/blobdiff - src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java
Updated copyright year
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / data / JobsDataWebApplicationBean.java
index 93cb98410dc2a56aad8d6a3eca9bd9569b43a54b..53e061c6da903a4ca3d6c3d96ad248059f4792fc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
+ * Copyright (C) 2017 - 2024 Free Software Foundation
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -19,9 +19,9 @@ package org.mxchange.jjobs.beans.data;
 import javax.enterprise.context.ApplicationScoped;
 import javax.inject.Named;
 import org.mxchange.jcontacts.model.contact.title.PersonalTitle;
-import org.mxchange.jcontactsbusiness.model.opening_time.dayofweek.DayOfTheWeek;
+import org.mxchange.jcoreee.dates.DayOfTheWeek;
 import org.mxchange.jjobs.beans.BaseJobsBean;
-import org.mxchange.jproduct.model.payment.PaymentType;
+import org.mxchange.jjobs.model.skill.status.SkillStatus;
 import org.mxchange.jusercore.model.user.profilemodes.ProfileMode;
 import org.mxchange.jusercore.model.user.status.UserAccountStatus;
 
@@ -48,47 +48,48 @@ public class JobsDataWebApplicationBean extends BaseJobsBean {
        }
 
        /**
-        * Returns a list of all days of the week
+        * Returns an array of all days of the week
         * <p>
-        * @return A list of all days of the week
+        * @return An array of all days of the week
         */
        public DayOfTheWeek[] getDayOfTheWeek () {
                return DayOfTheWeek.values();
        }
 
        /**
-        * Returns a list of all payment types
+        * Returns an array of all personal titles
         * <p>
-        * @return A list of all payment types
+        * @return An array of all personal titles
         */
-       public PaymentType[] getPaymentTypes () {
-               return PaymentType.values();
+       public PersonalTitle[] getPersonalTitles () {
+               return PersonalTitle.values();
        }
 
        /**
-        * Returns a list of all personal titles
+        * Returns an array of all profile modes
         * <p>
-        * @return A list of all personal titles
+        * @return An array of all profile modes
         */
-       public PersonalTitle[] getPersonalTitles () {
-               return PersonalTitle.values();
+       public ProfileMode[] getProfileModes () {
+               return ProfileMode.values();
        }
 
        /**
-        * Returns a list of all profile modes <p
+        * Returns an array of all skill statuses
         * <p>
-        * @return A list of all profile modes
+        * @return An array of all skill statuses
         */
-       public ProfileMode[] getProfileModes () {
-               return ProfileMode.values();
+       public SkillStatus[] getSkillStatuses () {
+               return SkillStatus.values();
        }
 
        /**
-        * Returns a list of all user account statuses
+        * Returns an array of all user account statuses
         * <p>
-        * @return A list of all user account statuses
+        * @return An array of all user account statuses
         */
        public UserAccountStatus[] getUserAccountStatuses () {
                return UserAccountStatus.values();
        }
+
 }