From 9ea477176227ad677d245528f4861cd219969c39 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 16 Oct 2015 11:31:37 +0200 Subject: [PATCH] =?utf8?q?added=20started/ended=20address=20book=20sharing?= =?utf8?q?=20events=20+=20enum=20for=20the=20type=20Signed-off-by:Roland?= =?utf8?q?=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../sharing/AddressbookSharingEvent.java | 43 ++++++++++++++ .../sharing/EndedAddressbookSharingEvent.java | 58 +++++++++++++++++++ .../StartedAddressbookSharingEvent.java | 58 +++++++++++++++++++ .../events/sharing/type/SharingType.java | 35 +++++++++++ 4 files changed, 194 insertions(+) create mode 100644 src/org/mxchange/addressbook/events/sharing/AddressbookSharingEvent.java create mode 100644 src/org/mxchange/addressbook/events/sharing/EndedAddressbookSharingEvent.java create mode 100644 src/org/mxchange/addressbook/events/sharing/StartedAddressbookSharingEvent.java create mode 100644 src/org/mxchange/addressbook/events/sharing/type/SharingType.java diff --git a/src/org/mxchange/addressbook/events/sharing/AddressbookSharingEvent.java b/src/org/mxchange/addressbook/events/sharing/AddressbookSharingEvent.java new file mode 100644 index 0000000..3c33dc1 --- /dev/null +++ b/src/org/mxchange/addressbook/events/sharing/AddressbookSharingEvent.java @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2015 Roland Haeder + * + * 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 . + */ +package org.mxchange.addressbook.events.sharing; + +import java.io.Serializable; +import org.mxchange.addressbook.events.sharing.type.SharingType; +import org.mxchange.addressbook.model.addressbook.shared.ShareableAddressbook; + +/** + * An interface for address book sharing events + *

+ * @author Roland Haeder + */ +public interface AddressbookSharingEvent extends Serializable { + + /** + * Getter for address book share instance + *

+ * @return Address book share instance + */ + ShareableAddressbook getShareableAddressbook (); + + /** + * Getter for sharing type enum + *

+ * @return Sharing type enum + */ + SharingType getSharingType (); +} diff --git a/src/org/mxchange/addressbook/events/sharing/EndedAddressbookSharingEvent.java b/src/org/mxchange/addressbook/events/sharing/EndedAddressbookSharingEvent.java new file mode 100644 index 0000000..f75dd81 --- /dev/null +++ b/src/org/mxchange/addressbook/events/sharing/EndedAddressbookSharingEvent.java @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2015 Roland Haeder + * + * 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 . + */ +package org.mxchange.addressbook.events.sharing; + +import org.mxchange.addressbook.events.sharing.type.SharingType; +import org.mxchange.addressbook.model.addressbook.shared.ShareableAddressbook; + +/** + * An event fired when a user ends sharing address books + *

+ * @author Roland Haeder + */ +public class EndedAddressbookSharingEvent implements AddressbookSharingEvent { + + /** + * 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 + *

+ * @param share Address book share entry + */ + public EndedAddressbookSharingEvent (final ShareableAddressbook share) { + this.shareableAddressbook = share; + } + + @Override + public ShareableAddressbook getShareableAddressbook () { + return this.shareableAddressbook; + } + + @Override + public SharingType getSharingType () { + // Started sharing + return SharingType.ENDED; + } +} diff --git a/src/org/mxchange/addressbook/events/sharing/StartedAddressbookSharingEvent.java b/src/org/mxchange/addressbook/events/sharing/StartedAddressbookSharingEvent.java new file mode 100644 index 0000000..df80be9 --- /dev/null +++ b/src/org/mxchange/addressbook/events/sharing/StartedAddressbookSharingEvent.java @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2015 Roland Haeder + * + * 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 . + */ +package org.mxchange.addressbook.events.sharing; + +import org.mxchange.addressbook.events.sharing.type.SharingType; +import org.mxchange.addressbook.model.addressbook.shared.ShareableAddressbook; + +/** + * An event fired when a user starts sharing address books + *

+ * @author Roland Haeder + */ +public class StartedAddressbookSharingEvent implements AddressbookSharingEvent { + + /** + * 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 + *

+ * @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; + } +} diff --git a/src/org/mxchange/addressbook/events/sharing/type/SharingType.java b/src/org/mxchange/addressbook/events/sharing/type/SharingType.java new file mode 100644 index 0000000..13a8725 --- /dev/null +++ b/src/org/mxchange/addressbook/events/sharing/type/SharingType.java @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2015 Roland Haeder + * + * 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 . + */ +package org.mxchange.addressbook.events.sharing.type; + +/** + * An enum for sharing types + *

+ * @author Roland Haeder + */ +public enum SharingType { + + /** + * Sharing has been started + */ + STARTED, + + /** + * Sharing has been ended + */ + ENDED; +} -- 2.39.2