use of com.sun.identity.console.federation.model.EntityModelImpl in project OpenAM by OpenRock.
the class WSFedGeneralViewBean method getWSFedRoles.
private List getWSFedRoles(String entityName, String realm) {
EntityModelImpl entModel = (EntityModelImpl) getEntityModel();
List role = entModel.getWSFedRoles(entityName, realm);
return role;
}
use of com.sun.identity.console.federation.model.EntityModelImpl in project OpenAM by OpenRock.
the class EntityPropertiesBase method getEntityModel.
protected AMModel getEntityModel() {
RequestContext rc = RequestManager.getRequestContext();
EntityModel model = new EntityModelImpl(rc.getRequest(), getPageSessionAttributes());
return model;
}
use of com.sun.identity.console.federation.model.EntityModelImpl in project OpenAM by OpenRock.
the class FederationViewBean method getEntityModel.
private EntityModel getEntityModel() {
RequestContext rc = RequestManager.getRequestContext();
HttpServletRequest req = rc.getRequest();
return new EntityModelImpl(req, getPageSessionAttributes());
}
Aggregations