use of com.sun.identity.console.idm.model.EntitiesModelImpl in project OpenAM by OpenRock.
the class EntitiesViewBean method getModelInternal.
protected AMModel getModelInternal() {
RequestContext rc = RequestManager.getRequestContext();
HttpServletRequest req = rc.getRequest();
return new EntitiesModelImpl(req, getPageSessionAttributes());
}
use of com.sun.identity.console.idm.model.EntitiesModelImpl in project OpenAM by OpenRock.
the class EndUserViewBean method getModelInternal.
protected AMModel getModelInternal() {
HttpServletRequest req = RequestManager.getRequestContext().getRequest();
EntitiesModel model = new EntitiesModelImpl(req, getPageSessionAttributes());
model.setEndUser(true);
return model;
}
Aggregations