-
Type:
Task
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Component/s: Liferay Faces Generator
-
Labels:None
This task involves changing the Alloy Generator (and regenerating all affected *Base.java UIComponent classes) so that ".internal" is removed from the RENDERER_TYPE string constants.
For example, in AccordionBase.java, the following string constant:
public static final String RENDERER_TYPE = "com.liferay.faces.alloy.component.accordion.internal.AccordionRenderer";
Would be changed to:
public static final String RENDERER_TYPE = "com.liferay.faces.alloy.component.accordion.AccordionRenderer";
This change will make the string values to better represent key names, rather than FQCNs.