All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.citytechinc.cq.component.dialog.ComponentNameTransformer Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.citytechinc.cq.component.dialog;

/**
 * During execution of the CQ Component Plugin, a Component Name Transformer
 * will transform the Java Class name of a Component into a name applicable for
 * a component node in the content repository. This name ends up being the
 * terminal part of the content path to the Component definition.
 */
public interface ComponentNameTransformer {

    /**
     * @param className The unqualified, or simple, name of the Java Class to
     * transform
     * @return The transformed name
     */
    String transform(String className);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy