use of com.sun.identity.console.authentication.model.AuthConfigurationModelImpl in project OpenAM by OpenRock.
the class NewAuthConfigViewBean method getModelInternal.
protected AMModel getModelInternal() {
if (acModel == null) {
RequestContext rc = RequestManager.getRequestContext();
acModel = new AuthConfigurationModelImpl(rc.getRequest(), getPageSessionAttributes());
}
return acModel;
}
use of com.sun.identity.console.authentication.model.AuthConfigurationModelImpl in project OpenAM by OpenRock.
the class AuthPropertiesViewBean method getConfigModel.
private AMModel getConfigModel() {
RequestContext rc = RequestManager.getRequestContext();
HttpServletRequest req = rc.getRequest();
return new AuthConfigurationModelImpl(req, getPageSessionAttributes());
}
use of com.sun.identity.console.authentication.model.AuthConfigurationModelImpl in project OpenAM by OpenRock.
the class AuthConfigViewBean method getModelInternal.
protected AMModel getModelInternal() {
RequestContext rc = RequestManager.getRequestContext();
acModel = new AuthConfigurationModelImpl(rc.getRequest(), getPageSessionAttributes());
acModel.initialize(getRealmName(), getConfigName());
return acModel;
}
use of com.sun.identity.console.authentication.model.AuthConfigurationModelImpl in project OpenAM by OpenRock.
the class AuthConfigViewBean method getBreadCrumbDisplayName.
protected String getBreadCrumbDisplayName() {
String[] arg = { getConfigName() };
AuthConfigurationModelImpl model = (AuthConfigurationModelImpl) getModel();
return MessageFormat.format(model.getLocalizedString("breadcrumbs.auth.editConfiguration"), (Object[]) arg);
}
Aggregations