]> git.mxchange.org Git - jjobs-war.git/blobdiff - src/java/org/mxchange/jjobs/beans/country/JobsCountryWebApplicationController.java
Refactured a lot:
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / country / JobsCountryWebApplicationController.java
index 78550df46b5bcac04ee9aca5e18e25259c9aca8f..226fcc4584f6bcf3ba2c4b3f2163e42e38ac9811 100644 (file)
@@ -19,6 +19,7 @@ package org.mxchange.jjobs.beans.country;
 import java.io.Serializable;
 import java.util.List;
 import org.mxchange.jcountry.data.Country;
+import org.mxchange.jcountry.events.AdminAddedCountryEvent;
 
 /**
  * An interface for country beans
@@ -33,4 +34,13 @@ public interface JobsCountryWebApplicationController extends Serializable {
         * @return All countries
         */
        List<Country> allCountries ();
+
+       /**
+        * Observing method when the event is fired that an administrator added a
+        * new country
+        * <p>
+        * @param event Event instance
+        */
+       void afterAdminAddedCountry (final AdminAddedCountryEvent event);
+
 }