Hello,I am currently configuring a component using the Java Use-API.
(under the apps folder)In a situation where i need to create another
Component that inherits Container Component, i want to use a Java class
by inheriting a Java class that inherits Container Component's
WCMUsePojo.[Test Code]1. Conatiner javapublic class Container extends
WCMUsePojo { @Override public void activate() throws Exception {} public
String getText(String text) { ... return String}2. Controller javapublic
class Contr...