X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjava%2Forg%2Fmxchange%2Fjjobs%2Fbeans%2Fbusiness%2Fopening_time%2FJobsOpeningTimeWebRequestController.java;h=706af76200aee87f0ad8b0cbed7fdfc1131e8192;hb=42a8cdcdfc19163390f37497d05bff3910ed8c55;hp=5630164d5f976d3137f05c4cdcf5f17f61cc460f;hpb=ea5dd0850cbd87a842e8f50e8e48a5dc5590bd87;p=jjobs-war.git diff --git a/src/java/org/mxchange/jjobs/beans/business/opening_time/JobsOpeningTimeWebRequestController.java b/src/java/org/mxchange/jjobs/beans/business/opening_time/JobsOpeningTimeWebRequestController.java index 5630164d..706af762 100644 --- a/src/java/org/mxchange/jjobs/beans/business/opening_time/JobsOpeningTimeWebRequestController.java +++ b/src/java/org/mxchange/jjobs/beans/business/opening_time/JobsOpeningTimeWebRequestController.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 - 2020 Free Software Foundation + * 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 @@ -17,9 +17,6 @@ package org.mxchange.jjobs.beans.business.opening_time; import java.io.Serializable; -import java.util.List; -import org.mxchange.jcontactsbusiness.exceptions.opening_time.OpeningTimeNotFoundException; -import org.mxchange.jcontactsbusiness.model.opening_time.OpeningTime; /** * An interface for general opening times controller @@ -28,24 +25,4 @@ import org.mxchange.jcontactsbusiness.model.opening_time.OpeningTime; */ public interface JobsOpeningTimeWebRequestController extends Serializable { - /** - * Returns a list of all opening times - *

- * @return A list of all opening times - */ - List allOpeningTimes (); - - /** - * Retrieves a single company department entity for given id number or - * throws a proper exception if not found. - *

- * @param openingId Company department id to lookup - *

- * @return Company department instance - *

- * @throws OpeningTimeNotFoundException If the id number could not be looked - * up and solved into an entity - */ - OpeningTime findOpeningTimeById (final Long openingId) throws OpeningTimeNotFoundException; - }