Uses of Class
it.eng.spagobi.bo.Role

Packages that use Role
it.eng.spagobi.bo   
it.eng.spagobi.bo.dao   
it.eng.spagobi.bo.dao.hibernate   
it.eng.spagobi.bo.dao.jdbc   
it.eng.spagobi.importexport   
it.eng.spagobi.security   
 

Uses of Role in it.eng.spagobi.bo
 

Fields in it.eng.spagobi.bo declared as Role
private  Role[] LowFunctionality.devRoles
           
private  Role[] LowFunctionality.execRoles
           
private  Role[] LowFunctionality.testRoles
           
 

Methods in it.eng.spagobi.bo that return Role
 Role[] LowFunctionality.getDevRoles()
           
 Role[] LowFunctionality.getExecRoles()
           
 Role[] LowFunctionality.getTestRoles()
           
 

Methods in it.eng.spagobi.bo with parameters of type Role
 void LowFunctionality.setDevRoles(Role[] devRoles)
           
 void LowFunctionality.setExecRoles(Role[] execRoles)
           
 void LowFunctionality.setTestRoles(Role[] testRoles)
           
 

Uses of Role in it.eng.spagobi.bo.dao
 

Methods in it.eng.spagobi.bo.dao that return Role
 Role IRoleDAO.loadByID(java.lang.Integer roleID)
          Loads a role identified by its roleID.
 Role IRoleDAO.loadByName(java.lang.String roleName)
          Loads a role identified by its roleName.
 

Methods in it.eng.spagobi.bo.dao with parameters of type Role
 void IRoleDAO.eraseRole(Role aRole)
          Implements the query to erase a role.
 void IRoleDAO.insertRole(Role aRole)
          Implements the query to insert a role.
 void IRoleDAO.modifyRole(Role aRole)
          Implements the query to modify a role.
 

Uses of Role in it.eng.spagobi.bo.dao.hibernate
 

Methods in it.eng.spagobi.bo.dao.hibernate that return Role
 Role RoleDAOHibImpl.loadByID(java.lang.Integer roleID)
           
 Role RoleDAOHibImpl.loadByName(java.lang.String roleName)
           
 Role RoleDAOHibImpl.toRole(SbiExtRoles hibRole)
          From the hibernate Role at input, gives the corrispondent Role object.
 

Methods in it.eng.spagobi.bo.dao.hibernate with parameters of type Role
 void RoleDAOHibImpl.eraseRole(Role aRole)
           
 void RoleDAOHibImpl.insertRole(Role aRole)
           
 void RoleDAOHibImpl.modifyRole(Role aRole)
           
 

Uses of Role in it.eng.spagobi.bo.dao.jdbc
 

Methods in it.eng.spagobi.bo.dao.jdbc that return Role
 Role RoleDAOImpl.loadByID(java.lang.Integer roleID)
           
 Role RoleDAOImpl.loadByName(java.lang.String roleName)
           
 

Methods in it.eng.spagobi.bo.dao.jdbc with parameters of type Role
 void RoleDAOImpl.eraseRole(Role aRole)
           
 void RoleDAOImpl.insertRole(Role aRole)
           
private  void LowFunctionalityDAOImpl.insertRolesFunctionality(it.eng.spago.dbaccess.sql.DataConnection dataConnection, LowFunctionality aLowFunctionality, java.lang.String strSql, Role[] roles, java.lang.String state)
          It is the implementation code for a DB insertion.
 void RoleDAOImpl.modifyRole(Role aRole)
           
 

Uses of Role in it.eng.spagobi.importexport
 

Methods in it.eng.spagobi.importexport with parameters of type Role
 void ExporterMetadata.insertFunctRole(Role role, LowFunctionality funct, java.lang.Integer stateId, java.lang.String stateCD, org.hibernate.Session session)
          Insert an association between a functionality and a role into the exported database
 void ExporterMetadata.insertParuseRole(ParameterUse parUse, Role role, org.hibernate.Session session)
          Insert an association between a parameter use and a role into the exported database
 void ExporterMetadata.insertRole(Role role, org.hibernate.Session session)
          Insert a role into the exported database
 

Uses of Role in it.eng.spagobi.security
 

Methods in it.eng.spagobi.security with parameters of type Role
private  boolean RoleSynchronizer.exist(Role pRole, IRoleDAO aRoleDAO)
          Returns true if a role already exists into the role list, false if none.