public void init(PortletConfig config) throws PortletException {
super.init(config);
try {
RelyingPartyManager rpm = (RelyingPartyManager)
createPortletService(RelyingPartyManager.class);
_relyingParty = rpm.getRelyingParty();
log.debug("RelyingParty: " + _relyingParty);
} catch (PortletServiceException e) {
throw new PortletException(e);
}