Search in sources :

Example 1 with EntityModelImpl

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;
}
Also used : List(java.util.List) EntityModelImpl(com.sun.identity.console.federation.model.EntityModelImpl)

Example 2 with EntityModelImpl

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;
}
Also used : EntityModel(com.sun.identity.console.federation.model.EntityModel) RequestContext(com.iplanet.jato.RequestContext) EntityModelImpl(com.sun.identity.console.federation.model.EntityModelImpl)

Example 3 with EntityModelImpl

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());
}
Also used : HttpServletRequest(javax.servlet.http.HttpServletRequest) RequestContext(com.iplanet.jato.RequestContext) EntityModelImpl(com.sun.identity.console.federation.model.EntityModelImpl)

Aggregations

EntityModelImpl (com.sun.identity.console.federation.model.EntityModelImpl)3 RequestContext (com.iplanet.jato.RequestContext)2 EntityModel (com.sun.identity.console.federation.model.EntityModel)1 List (java.util.List)1 HttpServletRequest (javax.servlet.http.HttpServletRequest)1