2 * Copyright (C) 2016 Roland Haeder
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package org.mxchange.addressbook.events.sharing;
19 import org.mxchange.addressbook.events.sharing.type.SharingType;
20 import org.mxchange.addressbook.model.addressbook.shared.ShareableAddressbook;
23 * An event fired when a user starts sharing address books
25 * @author Roland Haeder<roland@mxchange.org>
27 public class StartedAddressbookSharingEvent implements AddressbookSharingEvent {
32 private static final long serialVersionUID = 152_896_748_186_018_497L;
35 * Shared address book entry
37 private final ShareableAddressbook shareableAddressbook;
40 * Constructor with address book share entry
42 * @param share Address book share entry
44 public StartedAddressbookSharingEvent (final ShareableAddressbook share) {
45 this.shareableAddressbook = share;
49 public ShareableAddressbook getShareableAddressbook () {
50 return this.shareableAddressbook;
54 public SharingType getSharingType () {
56 return SharingType.STARTED;