Hello community, I'm trying to fetch dialog box values using WCM POJO
class(Use class and Bean class). I'm providing my bean class and use
class code here to fetch "title" value. Could you help me out!
MyBean.java:public class MyBean{private String title='' ";public String
getTitle(){return title;}public void setTitle(String
title){this.title=title;}} MyUse.java:public class MyUse extends
WCMUsePojo{private static final Logger Logger = LoggerFactory
.getLogger(MyUse.class);private MyBean myBean=...