001
014
015 package com.liferay.portal.model;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018 import com.liferay.portal.kernel.exception.SystemException;
019 import com.liferay.portal.kernel.trash.TrashHandler;
020 import com.liferay.portlet.trash.model.TrashEntry;
021
022
025 public interface TrashedModel {
026
027 public int getStatus();
028
029 public TrashEntry getTrashEntry() throws PortalException, SystemException;
030
031 public long getTrashEntryClassPK();
032
033 public TrashHandler getTrashHandler();
034
035 public boolean isInTrash();
036
037 public boolean isInTrashContainer();
038
039 }