]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/beans/contact/PizzaAdminContactWebRequestController.java
Updated copyright year
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / contact / PizzaAdminContactWebRequestController.java
index e430c9f3ab314454072d6c23d77e02f416eefe12..172caedeeca74b1071ce7f79366283c6416d7a13 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016, 2017 Roland Häder
+ * Copyright (C) 2016 - 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,7 +17,7 @@
 package org.mxchange.pizzaapplication.beans.contact;
 
 import java.io.Serializable;
-import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jcontacts.model.contact.Contact;
 
 /**
  * Administrative interface for user beans
@@ -38,13 +38,6 @@ public interface PizzaAdminContactWebRequestController extends Serializable {
         */
        Contact createContactInstance ();
 
-       /**
-        * Copies given contact's data to this controller
-        * <p>
-        * @param contact Contact instance
-        */
-       void copyContactToController (final Contact contact);
-
        /**
         * Getter for controller type
         * <p>
@@ -63,14 +56,10 @@ public interface PizzaAdminContactWebRequestController extends Serializable {
        void setControllerType (final String controllerType);
 
        /**
-        * Checks/returns whether the personal title (Mr./Mrs.) is required for this
-        * controller.
-        * <p>
-        * @return Whether personal title is required
+        * Checks whether all required personal data is set
         * <p>
-        * @Deprecated Don't use this method
+        * @return Whether the required personal data is set
         */
-       @Deprecated
-       boolean isPersonalTitleRequired ();
+       boolean isRequiredPersonalDataSet ();
 
 }