2 * Copyright (C) 2016 Roland Häder
\r
4 * This program is free software: you can redistribute it and/or modify
\r
5 * it under the terms of the GNU General Public License as published by
\r
6 * the Free Software Foundation, either version 3 of the License, or
\r
7 * (at your option) any later version.
\r
9 * This program is distributed in the hope that it will be useful,
\r
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
12 * GNU General Public License for more details.
\r
14 * You should have received a copy of the GNU General Public License
\r
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
\r
17 package org.mxchange.jcontacts.events.contact.update;
\r
19 import java.io.Serializable;
\r
20 import org.mxchange.jcontacts.contact.Contact;
\r
23 * An interface for events being fired when an administrator updated a new user
\r
26 * @author Roland Häder<roland@mxchange.org>
\r
28 public interface ObservableAdminUpdatedContactEvent extends Serializable {
\r
31 * Getter for updated contact instance
\r
33 * @return Updated contact instance
\r
35 Contact getUpdatedContact ();
\r