]> 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..e7a59b27fed1b001e3c77fa953caa8b414abf6db 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
+ * Copyright (C) 2017 - 2020 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
@@ -21,7 +21,6 @@ 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.jproduct.model.payment.PaymentType;
 import org.mxchange.jusercore.model.user.profilemodes.ProfileMode;
 import org.mxchange.jusercore.model.user.status.UserAccountStatus;
 
@@ -48,45 +47,36 @@ 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
-        */
-       public PaymentType[] getPaymentTypes () {
-               return PaymentType.values();
-       }
-
-       /**
-        * Returns a list of all personal titles
-        * <p>
-        * @return A list of all personal titles
+        * @return An array of all personal titles
         */
        public PersonalTitle[] getPersonalTitles () {
                return PersonalTitle.values();
        }
 
        /**
-        * Returns a list of all profile modes <p
+        * Returns an array of all profile modes <p
         * <p>
-        * @return A list of all profile modes
+        * @return An array of all profile modes
         */
        public ProfileMode[] getProfileModes () {
                return ProfileMode.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();