jcro.addValue(value);
}
}
for (org.apache.pluto.container.om.portlet.Description desc : pd.getDescriptions())
{
Description jdesc = jpd.addDescription(desc.getLang());
jdesc.setDescription(desc.getDescription());
}
for (org.apache.pluto.container.om.portlet.DisplayName dn : pd.getDisplayNames())
{
DisplayName jdn = jpd.addDisplayName(dn.getLang());
jdn.setDisplayName(dn.getDisplayName());
}
for (org.apache.pluto.container.om.portlet.InitParam ip : pd.getInitParams())
{
InitParam jip = jpd.addInitParam(ip.getParamName());
jip.setParamValue(ip.getParamValue());
for (org.apache.pluto.container.om.portlet.Description desc : ip.getDescriptions())
{
Description jdesc = jip.addDescription(desc.getLang());
jdesc.setDescription(desc.getDescription());
}
}
for (org.apache.pluto.container.om.portlet.SecurityRoleRef srr : pd.getSecurityRoleRefs())
{
SecurityRoleRef jsrr = jpd.addSecurityRoleRef(srr.getRoleName());