All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.journal.model.JournalArticle Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * 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.journal.model;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.kernel.annotation.ImplementationClassName;
import com.liferay.portal.kernel.model.PersistedModel;
import com.liferay.portal.kernel.model.TreeModel;
import com.liferay.portal.kernel.util.Accessor;

/**
 * The extended model interface for the JournalArticle service. Represents a row in the "JournalArticle" database table, with each column mapped to a property of this class.
 *
 * @author Brian Wing Shun Chan
 * @see JournalArticleModel
 * @generated
 */
@ImplementationClassName("com.liferay.journal.model.impl.JournalArticleImpl")
@ProviderType
public interface JournalArticle
	extends JournalArticleModel, PersistedModel, TreeModel {

	/*
	 * NOTE FOR DEVELOPERS:
	 *
	 * Never modify this interface directly. Add methods to com.liferay.journal.model.impl.JournalArticleImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.
	 */
	public static final Accessor ID_ACCESSOR =
		new Accessor() {

			@Override
			public Long get(JournalArticle journalArticle) {
				return journalArticle.getId();
			}

			@Override
			public Class getAttributeClass() {
				return Long.class;
			}

			@Override
			public Class getTypeClass() {
				return JournalArticle.class;
			}

		};
	public static final Accessor ARTICLE_ID_ACCESSOR =
		new Accessor() {

			@Override
			public String get(JournalArticle journalArticle) {
				return journalArticle.getArticleId();
			}

			@Override
			public Class getAttributeClass() {
				return String.class;
			}

			@Override
			public Class getTypeClass() {
				return JournalArticle.class;
			}

		};

	public com.liferay.portal.kernel.repository.model.Folder addImagesFolder()
		throws com.liferay.portal.kernel.exception.PortalException;

	@Override
	public String buildTreePath()
		throws com.liferay.portal.kernel.exception.PortalException;

	public String getArticleImageURL(
		com.liferay.portal.kernel.theme.ThemeDisplay themeDisplay);

	public JournalArticleResource getArticleResource()
		throws com.liferay.portal.kernel.exception.PortalException;

	public String getArticleResourceUuid()
		throws com.liferay.portal.kernel.exception.PortalException;

	public String[] getAvailableLanguageIds();

	public String getContentByLocale(String languageId);

	public com.liferay.dynamic.data.mapping.model.DDMStructure
		getDDMStructure();

	public com.liferay.dynamic.data.mapping.model.DDMTemplate getDDMTemplate();

	@com.liferay.portal.kernel.json.JSON
	public String getDescription();

	public String getDescription(java.util.Locale locale);

	public String getDescription(java.util.Locale locale, boolean useDefault);

	public String getDescription(String languageId);

	public String getDescription(String languageId, boolean useDefault);

	public java.util.Map getDescriptionMap();

	public String getDescriptionMapAsXML();

	public com.liferay.portal.kernel.xml.Document getDocument();

	public JournalFolder getFolder()
		throws com.liferay.portal.kernel.exception.PortalException;

	public java.util.Map getFriendlyURLMap()
		throws com.liferay.portal.kernel.exception.PortalException;

	public String getFriendlyURLsXML()
		throws com.liferay.portal.kernel.exception.PortalException;

	public java.util.List
			getImagesFileEntries()
		throws com.liferay.portal.kernel.exception.PortalException;

	public java.util.List
			getImagesFileEntries(int start, int end)
		throws com.liferay.portal.kernel.exception.PortalException;

	public java.util.List
			getImagesFileEntries(
				int start, int end,
				com.liferay.portal.kernel.util.OrderByComparator obc)
		throws com.liferay.portal.kernel.exception.PortalException;

	public int getImagesFileEntriesCount()
		throws com.liferay.portal.kernel.exception.PortalException;

	public long getImagesFolderId();

	public com.liferay.portal.kernel.model.Layout getLayout();

	/**
	 * @deprecated As of Judson (7.1.x)
	 */
	@Deprecated
	public String getLegacyDescription();

	/**
	 * @deprecated As of Judson (7.1.x)
	 */
	@Deprecated
	public String getLegacyTitle();

	public String getSmallImageType()
		throws com.liferay.portal.kernel.exception.PortalException;

	/**
	 * @deprecated As of Wilberforce (7.0.x), replaced by {@link
	 #getDDMStructureKey()}
	 */
	@Deprecated
	public String getStructureId();

	/**
	 * @deprecated As of Wilberforce (7.0.x), replaced by {@link
	 #getDDMTemplateKey()}
	 */
	@Deprecated
	public String getTemplateId();

	@com.liferay.portal.kernel.json.JSON
	public String getTitle();

	public String getTitle(java.util.Locale locale);

	public String getTitle(java.util.Locale locale, boolean useDefault);

	public String getTitle(String languageId);

	public String getTitle(String languageId, boolean useDefault);

	@com.liferay.portal.kernel.json.JSON
	public String getTitleCurrentValue();

	public java.util.Map getTitleMap();

	public String getTitleMapAsXML();

	public String getUrlTitle(java.util.Locale locale)
		throws com.liferay.portal.kernel.exception.PortalException;

	public boolean hasApprovedVersion();

	/**
	 * @deprecated As of Wilberforce (7.0.x), with no direct replacement
	 */
	@Deprecated
	public boolean isTemplateDriven();

	/**
	 * @deprecated As of Judson (7.1.x)
	 */
	@Deprecated
	public void setDescription(String description);

	public void setDescriptionMap(
		java.util.Map descriptionMap);

	public void setDocument(com.liferay.portal.kernel.xml.Document document);

	public void setImagesFolderId(long imagesFolderId);

	public void setSmallImageType(String smallImageType);

	/**
	 * @deprecated As of Wilberforce (7.0.x), replaced by {@link
	 #setDDMStructureKey(String)}
	 */
	@Deprecated
	public void setStructureId(String ddmStructureKey);

	/**
	 * @deprecated As of Wilberforce (7.0.x), replaced by {@link
	 #setDDMTemplateKey(String)}
	 */
	@Deprecated
	public void setTemplateId(String ddmTemplateKey);

	/**
	 * @deprecated As of Judson (7.1.x)
	 */
	@Deprecated
	public void setTitle(String title);

	public void setTitleMap(java.util.Map titleMap);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy