Example usage for com.liferay.portal.model.impl ContactImpl ContactImpl

List of usage examples for com.liferay.portal.model.impl ContactImpl ContactImpl

Introduction

In this page you can find the example usage for com.liferay.portal.model.impl ContactImpl ContactImpl.

Prototype

ContactImpl

Source Link

Usage

From source file:com.liferay.users.admin.internal.search.UserIndexer.java

License:Open Source License

@Override
protected void doDelete(User user) throws Exception {
    deleteDocument(user.getCompanyId(), user.getUserId());

    Indexer<Contact> indexer = IndexerRegistryUtil.nullSafeGetIndexer(Contact.class);

    Contact contact = new ContactImpl();

    contact.setContactId(user.getContactId());
    contact.setCompanyId(user.getCompanyId());

    indexer.delete(contact);//from www . j  a  v a  2 s  .  c om
}