]> git.mxchange.org Git - jaddressbook-share-core.git/blobdiff - src/org/mxchange/jaddressbookshare/events/sharing/StartedAddressbookSharingEvent.java
this has been moved out from jaddressbook-core
[jaddressbook-share-core.git] / src / org / mxchange / jaddressbookshare / events / sharing / StartedAddressbookSharingEvent.java
diff --git a/src/org/mxchange/jaddressbookshare/events/sharing/StartedAddressbookSharingEvent.java b/src/org/mxchange/jaddressbookshare/events/sharing/StartedAddressbookSharingEvent.java
new file mode 100644 (file)
index 0000000..16c9b60
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+ * Copyright (C) 2016 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.jaddressbookshare.events.sharing;
+
+import org.mxchange.jaddressbookshare.events.sharing.type.SharingType;
+import org.mxchange.jaddressbookshare.model.addressbook.shared.ShareableAddressbook;
+
+/**
+ * An event fired when a user starts sharing address books
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+public class StartedAddressbookSharingEvent implements ObservableAddressbookSharingEvent {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 152_896_748_186_018_497L;
+
+       /**
+        * Shared address book entry
+        */
+       private final ShareableAddressbook shareableAddressbook;
+
+       /**
+        * Constructor with address book share entry
+        * <p>
+        * @param share Address book share entry
+        */
+       public StartedAddressbookSharingEvent (final ShareableAddressbook share) {
+               this.shareableAddressbook = share;
+       }
+
+       @Override
+       public ShareableAddressbook getShareableAddressbook () {
+               return this.shareableAddressbook;
+       }
+
+       @Override
+       public SharingType getSharingType () {
+               // Started sharing
+               return SharingType.STARTED;
+       }
+}