Fehlende Datei

git-svn-id: https://svn.libreccm.org/ccm/trunk@1154 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2011-10-10 08:34:52 +00:00
parent e646cecbfd
commit 72b15514bb
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
package com.arsdigita.cms.contenttypes;
import com.arsdigita.bebop.PageState;
import com.arsdigita.cms.ui.ContentItemPage;
/**
* <p>
* This interface is implemented by "meta" content items which need to
* customize their preview link. An example is a content item which serves
* as an access point to an application.
* </p>
* <p>
* An implementation may return {@code null}. In this case
* {@link ContentItemPage} will use the default preview URL.
* </p>
*
* @author Jens Pelzetter
* @version $Id$
*/
public interface CustomizedPreviewLink {
String getPreviewUrl(PageState state);
}