com.liferay.journal.web.internal.asset.JournalArticleDDMFormValuesReader Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.journal.web.internal.asset;
import com.liferay.asset.kernel.model.BaseDDMFormValuesReader;
import com.liferay.dynamic.data.mapping.kernel.DDMFormValues;
import com.liferay.dynamic.data.mapping.util.DDMBeanTranslatorUtil;
import com.liferay.journal.model.JournalArticle;
import com.liferay.portal.kernel.exception.PortalException;
/**
* @author Adolfo Pérez
*/
public final class JournalArticleDDMFormValuesReader
extends BaseDDMFormValuesReader {
public JournalArticleDDMFormValuesReader(JournalArticle article) {
_article = article;
}
@Override
public DDMFormValues getDDMFormValues() throws PortalException {
try {
return DDMBeanTranslatorUtil.translate(_article.getDDMFormValues());
}
catch (Exception exception) {
throw new PortalException(
"Unable to read fields for article " + _article.getId(),
exception);
}
}
private final JournalArticle _article;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy