X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Forg%2Fmxchange%2Fjaddressbookshare%2Fevents%2Fsharing%2FStartedAddressbookSharingEvent.java;fp=src%2Forg%2Fmxchange%2Fjaddressbookshare%2Fevents%2Fsharing%2FStartedAddressbookSharingEvent.java;h=16c9b60d878616728dd755fdb5b88c0e0ab36edf;hb=8ebe9439ad91fc870c37651f3e17085c146d3903;hp=0000000000000000000000000000000000000000;hpb=59f2e235506455d7d20dadc3ab0ae60da01998c8;p=jaddressbook-share-core.git diff --git a/src/org/mxchange/jaddressbookshare/events/sharing/StartedAddressbookSharingEvent.java b/src/org/mxchange/jaddressbookshare/events/sharing/StartedAddressbookSharingEvent.java new file mode 100644 index 0000000..16c9b60 --- /dev/null +++ b/src/org/mxchange/jaddressbookshare/events/sharing/StartedAddressbookSharingEvent.java @@ -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 . + */ +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 + *

+ * @author Roland Häder + */ +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 + *

+ * @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; + } +}