001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.journal.model.impl;
016    
017    /**
018     * @author Brian Wing Shun Chan
019     */
020    public class JournalFeedImpl extends JournalFeedBaseImpl {
021    
022            /**
023             * @deprecated As of 7.0.0, replaced by {@link #getDDMRendererTemplateKey()}
024             */
025            @Override
026            public String getRendererTemplateId() {
027                    return getDDMRendererTemplateKey();
028            }
029    
030            /**
031             * @deprecated As of 7.0.0, replaced by {@link #getDDMStructureKey()}
032             */
033            @Override
034            public String getStructureId() {
035                    return getDDMStructureKey();
036            }
037    
038            /**
039             * @deprecated As of 7.0.0, replaced by {@link #getDDMTemplateKey()}
040             */
041            @Override
042            public String getTemplateId() {
043                    return getDDMTemplateKey();
044            }
045    
046            /**
047             * @deprecated As of 7.0.0, replaced by {@link #setRendererTemplateKey()}
048             */
049            @Override
050            public void setRendererTemplateId(String rendererTemplateKey) {
051                    setDDMRendererTemplateKey(rendererTemplateKey);
052            }
053    
054            /**
055             * @deprecated As of 7.0.0, replaced by {@link #setDDMStructureKey()}
056             */
057            @Override
058            public void setStructureId(String structureKey) {
059                    setDDMStructureKey(structureKey);
060            }
061    
062            /**
063             * @deprecated As of 7.0.0, replaced by {@link #setDDMTemplateKey()}
064             */
065            @Override
066            public void setTemplateId(String templateKey) {
067                    setDDMTemplateKey(templateKey);
068            }
069    
070    }