use of com.sun.identity.console.base.model.AMServiceProfileModel in project OpenAM by OpenRock.
the class DynamicRequestViewBean method handleDynLinkRequest.
/**
* Extract the URL for the dynamic link and pass it to subclass to handle the link request.
*
* @param event Request invocation event.
*/
public void handleDynLinkRequest(RequestInvocationEvent event) {
AMServiceProfileModel model = (AMServiceProfileModel) getModel();
setDynamicRequest(false);
if (model == null) {
forwardTo();
} else {
HttpServletRequest request = event.getRequestContext().getRequest();
String url = appendPgSession(model.getPropertiesViewBean(request.getParameter("attrname")));
handleDynamicLinkRequest(url);
}
}
Aggregations