Package sk.vrto.web.events

Examples of sk.vrto.web.events.ContactRemovedEvent


    }

    public void removeContact(Contact contact) {
        String email = contact.getEmail();
        contactRepository.delete(contact);
        eventBus.post(new ContactRemovedEvent(email));
    }
View Full Code Here

TOP

Related Classes of sk.vrto.web.events.ContactRemovedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.