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 @Deprecated 026 @Override 027 public String getRendererTemplateId() { 028 return getDDMRendererTemplateKey(); 029 } 030 031 /** 032 * @deprecated As of 7.0.0, replaced by {@link #getDDMStructureKey()} 033 */ 034 @Deprecated 035 @Override 036 public String getStructureId() { 037 return getDDMStructureKey(); 038 } 039 040 /** 041 * @deprecated As of 7.0.0, replaced by {@link #getDDMTemplateKey()} 042 */ 043 @Deprecated 044 @Override 045 public String getTemplateId() { 046 return getDDMTemplateKey(); 047 } 048 049 /** 050 * @deprecated As of 7.0.0, replaced by {@link 051 * #setDDMRendererTemplateKey(String)} 052 */ 053 @Deprecated 054 @Override 055 public void setRendererTemplateId(String rendererTemplateKey) { 056 setDDMRendererTemplateKey(rendererTemplateKey); 057 } 058 059 /** 060 * @deprecated As of 7.0.0, replaced by {@link #setDDMStructureKey(String)} 061 */ 062 @Deprecated 063 @Override 064 public void setStructureId(String structureKey) { 065 setDDMStructureKey(structureKey); 066 } 067 068 /** 069 * @deprecated As of 7.0.0, replaced by {@link #setDDMTemplateKey(String)} 070 */ 071 @Deprecated 072 @Override 073 public void setTemplateId(String templateKey) { 074 setDDMTemplateKey(templateKey); 075 } 076 077 }