11-03-05 12:51 PM
RoleDataBean is primarily for Internal use only. However, if you need to obt
ain the role description you could do it the following way.
<jsp:useBean id="roleDataBean" class="com.ibm.commerce.user.beans.RoleDat
aBean" scope="page">
</jsp:useBean>
<%
roleDataBean. setDataBeanKeyRoleId(iDataBeanKeyRoleId)
;
DataBeanManager. activate(roleDataBean,request,response);
out.println(roleDataBean.getDescription());
%>
Hopefully that should work. Let me know if you have any problems.
-Balaji Raghavan
[ Post a follow-up to this message ]
|