List of usage examples for com.liferay.portal.model.impl ContactImpl ContactImpl
ContactImpl
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 }