]> git.mxchange.org Git - jjobs-war.git/blobdiff - src/java/org/mxchange/jjobs/beans/business/branchoffice/list/JobsBranchOfficeListWebViewController.java
Updated copyright year
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / business / branchoffice / list / JobsBranchOfficeListWebViewController.java
index 147c4b4de3d191e05dc38379d253f86be3a6639a..b0c83db1c815572bb8bdd6b14827d89ead63ceb8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017, 2020 Free Software Foundation
+ * Copyright (C) 2017 - 2022 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
@@ -43,17 +43,17 @@ public interface JobsBranchOfficeListWebViewController extends Serializable {
         * <p>
         * @return A list of all branch offices
         */
-       List<BranchOffice> allBranchOffices ();
+       List<BranchOffice> getAllBranchOffices ();
 
        /**
         * Tries to find a branch office with given id number
         * <p>
-        * @param branchOfficeId Branch office id
+        * @param branchId Branch office id
         * <p>
         * @return A branch office instance
         * <p>
         * @throws BranchOfficeNotFoundException If the branch office was not found
         */
-       BranchOffice findBranchOfficeById (final Long branchOfficeId) throws BranchOfficeNotFoundException;
+       BranchOffice findBranchOfficeById (final Long branchId) throws BranchOfficeNotFoundException;
 
 }