
io.sightly.java.api.RenderUnit Maven / Gradle / Ivy
/*******************************************************************************
*
* ADOBE CONFIDENTIAL
* __________________
*
* Copyright 2013 Adobe Systems Incorporated
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any. The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
******************************************************************************/
package io.sightly.java.api;
import javax.script.Bindings;
/**
* Basic unit of rendering. This also extends the record interface. The
* properties for a unit are the sub-units
*
* This interface was previsouly used as the interface for Sightly templates
* translated to Java classes. With the move from Sightly to Apache Sling this
* class is not used any longer. Non-Sightly implementations of this class are
* ignored.
*
* @deprecated as of bundle version 1.1.68 without replacement. Implementations
* of this interface are not used and thus ignored by the Sling
* Sightly engine.
*/
@Deprecated
public interface RenderUnit extends Record {
/**
* Render the main script template
* @param renderContext - the rendering context
* @param arguments - the arguments for this unit
*/
void render(RenderContext renderContext, Bindings arguments);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy