*/
public void deleteWarrantUserUniqueId(
WarrantUserUniqueId warrantUserUniqueId) throws SystemException {
warrantUserUniqueIdPersistence.remove(warrantUserUniqueId);
Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
if (indexer != null) {
try {
indexer.delete(warrantUserUniqueId);
}
catch (SearchException se) {
if (_log.isWarnEnabled()) {
_log.warn(se, se);
}