import java.io.Serializable;
import javax.ejb.Remote;
-import org.mxchange.jcontactsbusiness.exceptions.basicdata.BasicCompanyDataAlreadyAddedException;
-import org.mxchange.jcontactsbusiness.model.basicdata.BusinessBasicData;
+import org.mxchange.jcontactsbusiness.exceptions.basicdata.BasicDataAlreadyAddedException;
+import org.mxchange.jcontactsbusiness.model.basicdata.BasicData;
/**
* A remote interface for business contact data
* <p>
* @return Updated basic data
* <p>
- * @throws BasicCompanyDataAlreadyAddedException If the company name was already
+ * @throws BasicDataAlreadyAddedException If the company name was already
* found
*/
- BusinessBasicData addCompanyBasicData (final BusinessBasicData basicData) throws BasicCompanyDataAlreadyAddedException;
+ BasicData addBusinessBasicData (final BasicData basicData) throws BasicDataAlreadyAddedException;
}
*/
package org.mxchange.jcontactsbusiness.model.basicdata;
-import org.mxchange.jcontactsbusiness.model.basicdata.BusinessBasicData;
import java.io.Serializable;
import java.util.List;
import javax.ejb.Remote;
-import org.mxchange.jcontactsbusiness.exceptions.basicdata.BasicCompanyDataNotFoundException;
/**
* A remote interface for business contact data
@Remote
public interface BasicCompanyDataSessionBeanRemote extends Serializable {
- /**
- * Checks whether given company name already exists
- * <p>
- * @param companyName Company name to check
- * <p>
- * @return Whether the company name exists
- */
- Boolean isCompanyNameUsed (final String companyName);
-
- /**
- * Retrieves a single business data entity for given id number or throws a
- * proper exception if not found.
- * <p>
- * @param basicDataId Company basic data id to lookup
- * <p>
- * @return Business contact instance
- * <p>
- * @throws BasicCompanyDataNotFoundException If the id number could not be
- * looked up and solved into an entity
- */
- BusinessBasicData findBasicDataById (final Long basicDataId) throws BasicCompanyDataNotFoundException;
-
/**
* Returns a list, even empty if not thing found, from all business
* contacts. NULL should not be returned by this method.
* <p>
* @return A list with all business contacts
*/
- List<BusinessBasicData> allCompanyBasicData ();
+ List<BasicData> allBusinessBasicData ();
}
import java.io.Serializable;
import java.util.List;
import javax.ejb.Remote;
-import org.mxchange.jcontactsbusiness.exceptions.branchoffice.BranchOfficeNotFoundException;
/**
* A remote interface for branch offices
@Remote
public interface BranchOfficeSessionBeanRemote extends Serializable {
- /**
- * Tries to find a branch office with given id number
- * <p>
- * @param branchOfficeId 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;
-
/**
* Returns a list of all branch offices
* <p>
import java.io.Serializable;
import java.util.List;
import javax.ejb.Remote;
-import org.mxchange.jcontactsbusiness.exceptions.department.DepartmentNotFoundException;
/**
* A remote interface for departments
@Remote
public interface DepartmentSessionBeanRemote extends Serializable {
- /**
- * Retrieves a single company department entity for given id number or
- * throws a proper exception if not found.
- * <p>
- * @param departmentId Company department id to lookup
- * <p>
- * @return Company department instance
- * <p>
- * @throws DepartmentNotFoundException If the id number could not be
- * looked up and solved into an entity
- */
- Department findDepartmentById (final Long departmentId) throws DepartmentNotFoundException;
-
/**
* Returns a list, even empty if not thing found, from all company
* departments. NULL should not be returned by this method.
+++ /dev/null
-/*
- * Copyright (C) 2017 Roland Häder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcontactsbusiness.model.employee;
-
-import java.io.Serializable;
-import javax.ejb.Remote;
-
-/**
- * An interface for administrative purposes on handling company employee data
- * <p>
- * @author Roland Häder<roland@mxchange.org>
- */
-@Remote
-public interface AdminCompanyEmployeeSessionBeanRemote extends Serializable {
-
-}
--- /dev/null
+/*
+ * Copyright (C) 2017 Roland Häder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontactsbusiness.model.employee;
+
+import java.io.Serializable;
+import javax.ejb.Remote;
+
+/**
+ * An interface for administrative purposes on handling company employee data
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+@Remote
+public interface AdminEmployeeSessionBeanRemote extends Serializable {
+
+}
+++ /dev/null
-/*
- * Copyright (C) 2017 Roland Häder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcontactsbusiness.model.employee;
-
-import java.io.Serializable;
-import java.util.List;
-import javax.ejb.Remote;
-import org.mxchange.jcontactsbusiness.exceptions.employee.CompanyEmployeeNotFoundException;
-
-/**
- * An interface for company employee data being handled
- * <p>
- * @author Roland Häder<roland@mxchange.org>
- */
-@Remote
-public interface CompanyEmployeeSessionBeanRemote extends Serializable {
-
- /**
- * Returns a list of all company employees (regardless in which company they work)
- * <p>
- * @return A list of all company employees
- */
- List<Employee> allCompanyEmployees ();
-
- /**
- * Finds a company employee by given employee id
- * <p>
- * @param employeeId Employee id to find company employee instance for
- * <p>
- * @return Company employee instance
- * <p>
- * @throws CompanyEmployeeNotFoundException If the company employee was not
- * found
- */
- Employee findCompanyEmployeeById (final Long employeeId) throws CompanyEmployeeNotFoundException;
-
-}
--- /dev/null
+/*
+ * Copyright (C) 2017 Roland Häder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontactsbusiness.model.employee;
+
+import java.io.Serializable;
+import java.util.List;
+import javax.ejb.Remote;
+
+/**
+ * An interface for company employee data being handled
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+@Remote
+public interface EmployeeSessionBeanRemote extends Serializable {
+
+ /**
+ * Returns a list of all company employees (regardless in which company they work)
+ * <p>
+ * @return A list of all company employees
+ */
+ List<Employable> allEmployees ();
+
+}
import java.io.Serializable;
import java.util.List;
import javax.ejb.Remote;
-import org.mxchange.jcontactsbusiness.exceptions.opening_time.OpeningTimeNotFoundException;
/**
* A remote interface for opening times
@Remote
public interface OpeningTimeSessionBeanRemote extends Serializable {
- /**
- * Retrieves a single company department entity for given id number or
- * throws a proper exception if not found.
- * <p>
- * @param openingId Company department id to lookup
- * <p>
- * @return Company department instance
- * <p>
- * @throws OpeningTimeNotFoundException If the id number could not be looked
- * up and solved into an entity
- */
- OpeningTime findOpeningTimesById (final Long openingId) throws OpeningTimeNotFoundException;
-
/**
* Returns a list, even empty if not thing found, from all opening times.
* NULL should not be returned by this method.