org.kohsuke.stapler.jelly.JellyCompatibleFacet Maven / Gradle / Ivy
package org.kohsuke.stapler.jelly;
import org.apache.commons.jelly.Script;
import org.kohsuke.stapler.AbstractTearOff;
import org.kohsuke.stapler.Facet;
import java.util.Collection;
/**
* {@link Facet} subtype (although not captured in a type hierarchy) that loads Jelly-compatible scripts.
*
* @author Kohsuke Kawaguchi
*/
public interface JellyCompatibleFacet {
/**
*
*/
Collection extends Class extends AbstractTearOff,? extends Script,?>>> getClassTearOffTypes();
/**
* Gets the list of view script extensions, such as ".jelly".
*/
Collection getScriptExtensions();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy