/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.mail.reader.internal.imap; import com.liferay.mail.reader.attachment.DefaultAttachmentHandler; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import java.io.InputStream; import javax.mail.Folder; import javax.mail.MessagingException; /** * @author Ryan Park */ public class IMAPAttachmentHandler extends DefaultAttachmentHandler { public IMAPAttachmentHandler(InputStream inputStream, Folder folder) { super(inputStream, folder); } @Override public void cleanUp() { try { Folder folder = getFolder(); if ((folder == null) || !folder.isOpen()) { return; } folder.close(false); } catch (MessagingException me) { _log.error(me, me); } } private static final Log _log = LogFactoryUtil.getLog( IMAPAttachmentHandler.class); }