X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Fjava%2Forg%2Fmxchange%2Fjjobs%2Fbeans%2Fdata%2FJobsDataWebApplicationBean.java;h=e7a59b27fed1b001e3c77fa953caa8b414abf6db;hb=ea5dd0850cbd87a842e8f50e8e48a5dc5590bd87;hp=93cb98410dc2a56aad8d6a3eca9bd9569b43a54b;hpb=ec2820f9436e78abce162068b6f98c485f1f631a;p=jjobs-war.git diff --git a/src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java b/src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java index 93cb9841..e7a59b27 100644 --- a/src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java +++ b/src/java/org/mxchange/jjobs/beans/data/JobsDataWebApplicationBean.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Roland Haeder + * 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 *

- * @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 *

- * @return A list of all payment types - */ - public PaymentType[] getPaymentTypes () { - return PaymentType.values(); - } - - /** - * Returns a list of all personal titles - *

- * @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

- * @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 *

- * @return A list of all user account statuses + * @return An array of all user account statuses */ public UserAccountStatus[] getUserAccountStatuses () { return UserAccountStatus.values();