use of com.sun.identity.console.webservices.model.WSPersonalProfileServiceModelImpl in project OpenAM by OpenRock.
the class WSPPServiceDSAttributeMapListViewBeanBase method getModelInternal.
protected AMModel getModelInternal() {
AMModel model = null;
HttpServletRequest req = RequestManager.getRequestContext().getRequest();
try {
model = new WSPersonalProfileServiceModelImpl(req, getPageSessionAttributes());
} catch (AMConsoleException e) {
setInlineAlertMessage(CCAlert.TYPE_ERROR, "message.error", e.getMessage());
}
return model;
}
use of com.sun.identity.console.webservices.model.WSPersonalProfileServiceModelImpl in project OpenAM by OpenRock.
the class WSPPServiceSupportedContainerViewBeanBase method getModelInternal.
protected AMModel getModelInternal() {
AMModel model = null;
HttpServletRequest req = RequestManager.getRequestContext().getRequest();
try {
model = new WSPersonalProfileServiceModelImpl(req, getPageSessionAttributes());
} catch (AMConsoleException e) {
setInlineAlertMessage(CCAlert.TYPE_ERROR, "message.error", e.getMessage());
}
return model;
}
Aggregations