Fehlende Datei
git-svn-id: https://svn.libreccm.org/ccm/trunk@1154 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
e646cecbfd
commit
72b15514bb
|
|
@ -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);
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue