在 Geronimo 中管理 Apache Pluto
2010-03-30 00:00:00 来源:WEB开发网GBeanInfo 对象所定义的每项操作是使用 org.apache.pluto.portalImpl.services.ServiceManager 类中存储的对象实例实现的,并且是使用 ServiceManager 类的 getService 方法检索的。在类似于 ConfigService GBean 的方式中,必须把对 org.apache.pluto.portalImpl.services.portletentityregistry.PortletEntityRegistryService 类的引用作为参数传递给 ServiceManager 类的 getService 方法才能检索 PortletEntityRegistryService 组件的实例。
当 PortletEntityRegistryService 组件的实例可用并且公开为标准 Geronimo GBean 后,可以使 portlet 的安全角色信息可用于 Pluto 管理环境,如清单 6 中的 GBean 方法所示:
清单 6. portlet 实体注册服务 GBean 所提供的安全角色信息
public org.apache.pluto.om.common.SecurityRoleRefSet
getSecurityRoleRefs(String entityKey)
{
org.apache.pluto.portalImpl.om.portlet.impl.PortletDefinitionImpl
portletDefinitionImpl = getPortletDefImpl(entityKey);
if (portletDefinitionImpl == null)
{
return null;
}
return portletDefinitionImpl.getCastorInitSecurityRoleRefs();
}
public void setSecurityRoleRefs(String entityKey,
org.apache.pluto.om.common.SecurityRoleRefSet securityRoleRefSet)
{
org.apache.pluto.portalImpl.om.portlet.impl.PortletDefinitionImpl
portletDefinitionImpl = getPortletDefImpl(entityKey);
if (portletDefinitionImpl == null)
{
return;
}
portletDefinitionImpl.setCastorInitSecurityRoleRefs(securityRoleRefSet);
}
- ››apache设置域名绑定 以及绑定不起作用的排查
- ››apache rewrite将指定URL转向指定的几个服务器
- ››apache配置文件httpd.comf部分参数说明
- ››Apache+Mysql+PHP+phpMyAdmin+Mac OS X 10.7 Lion...
- ››管理/var/spool/clientmqueue/下的大文件
- ››apache+tomcat负载均衡_项目实例
- ››apache mysql php 源码编译使用
- ››Apache添加mod_aspdotnet.so支持ASP.NET配置指南
- ››Apache中改变php.ini的路径
- ››Apache2.2与Tomcat6整合及虚拟主机配置
- ››Apache+php+mysql在windows下的安装与配置图解
- ››Apache+Subversion完美结合,CentOS下实现版本控制...
更多精彩
赞助商链接