X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjava%2Forg%2Fmxchange%2Fjjobs%2Fbeans%2Fcontact%2FJobsContactWebRequestController.java;h=205a6c830f81c34cb8c46e2e92a8666fd855bdaa;hb=5d8d2a902cf9d92232739ee5770a272fd6b03beb;hp=f31b1f2fd6c1867229a7b0b965162c4c34128ef4;hpb=6313662919a21533e334e951c33352095570a6c9;p=jjobs-war.git diff --git a/src/java/org/mxchange/jjobs/beans/contact/JobsContactWebRequestController.java b/src/java/org/mxchange/jjobs/beans/contact/JobsContactWebRequestController.java index f31b1f2f..205a6c83 100644 --- a/src/java/org/mxchange/jjobs/beans/contact/JobsContactWebRequestController.java +++ b/src/java/org/mxchange/jjobs/beans/contact/JobsContactWebRequestController.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016, 2017 Roland Häder + * Copyright (C) 2016 - 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 @@ -17,8 +17,6 @@ package org.mxchange.jjobs.beans.contact; import java.io.Serializable; -import java.util.List; -import org.mxchange.jcontacts.exceptions.ContactNotFoundException; import org.mxchange.jcontacts.model.contact.Contact; /** @@ -45,20 +43,6 @@ public interface JobsContactWebRequestController extends Serializable { */ void clearEmailAddresses (); - /** - * Returns a list of all found contacts - *

- * @return A list of all contacts. - */ - List allContacts (); - - /** - * Updates all data from bean in given contact instance - *

- * @param userContact Contact instance to update - */ - void updateContactDataFromController (final Contact userContact); - /** * Creates an instance from all properties *

@@ -66,23 +50,6 @@ public interface JobsContactWebRequestController extends Serializable { */ Contact createContactInstance (); - /** - * Getter for controller type - *

- * @return controller type - */ - String getControllerType (); - - /** - * Setter for controller type - *

- * @param controllerType Controller type - *

- * @deprecated Don't use this method. - */ - @Deprecated - void setControllerType (final String controllerType); - /** * Checks whether contact instance's email address is used *

@@ -121,17 +88,6 @@ public interface JobsContactWebRequestController extends Serializable { */ String doChangePersonalContactData (); - /** - * Returns a contact instance which has the given id number. - *

- * @param contactId Contact id - *

- * @return Contact instance - *

- * @throws ContactNotFoundException If the contact was not found - */ - Contact findContactById (final Long contactId) throws ContactNotFoundException; - /** * Checks whether the given email address is already registered. The email * address should be validated by EmailAddressValidator before calling this