Uses of Class
edu.uoc.tfc.dbmodel.security.Role

Packages that use Role
edu.uoc.tfc.dbmodel.security   
edu.uoc.tfc.dbmodel.security.crud   
 

Uses of Role in edu.uoc.tfc.dbmodel.security
 

Subclasses of Role in edu.uoc.tfc.dbmodel.security
 class RoleImpl
           
 

Methods in edu.uoc.tfc.dbmodel.security that return Role
 Role RoleDao.create(Role role)
          Creates an instance of edu.uoc.tfc.dbmodel.security.Role and adds it to the persistent store.
 Role RoleDaoBase.create(Role role)
           
 Role RoleDao.create(java.lang.String roleId, java.lang.String description)
           Creates a new edu.uoc.tfc.dbmodel.security.Role instance from all attributes and adds it to the persistent store.
 Role RoleDaoBase.create(java.lang.String roleId, java.lang.String description)
           
 Role User.getRol()
           
 Role RoleDao.load(java.lang.Long id)
          Loads an instance of edu.uoc.tfc.dbmodel.security.Role from the persistent store.
 Role RoleDaoBase.load(java.lang.Long id)
           
static Role Role.Factory.newInstance()
          Constructs a new instance of Role.
static Role Role.Factory.newInstance(java.lang.String roleId, java.lang.String description)
          Constructs a new instance of Role, taking all required and/or read-only properties as arguments.
static Role Role.Factory.newInstance(java.lang.String roleId, java.lang.String description, java.util.Collection users, java.util.Collection operations)
          Constructs a new instance of Role, taking all possible properties (except the identifier(s))as arguments.
 Role RoleDao.roleVOToEntity(RoleVO roleVO)
          Converts an instance of type RoleVO to this DAO's entity.
 Role RoleDaoImpl.roleVOToEntity(RoleVO roleVO)
           
 

Methods in edu.uoc.tfc.dbmodel.security with parameters of type Role
 User UserDao.create(java.lang.Boolean active, java.lang.String adress, java.lang.String nom, java.lang.String password, java.lang.String primerCognom, Role rol, java.lang.String segonCognom, java.lang.String userId)
           Creates a new edu.uoc.tfc.dbmodel.security.User instance from only required properties (attributes and association ends) and adds it to the persistent store.
 User UserDaoBase.create(java.lang.Boolean active, java.lang.String adress, java.lang.String nom, java.lang.String password, java.lang.String primerCognom, Role rol, java.lang.String segonCognom, java.lang.String userId)
           
 java.lang.Object UserDao.create(int transform, java.lang.Boolean active, java.lang.String adress, java.lang.String nom, java.lang.String password, java.lang.String primerCognom, Role rol, java.lang.String segonCognom, java.lang.String userId)
           Does the same thing as UserDao.create(java.lang.String, java.lang.String, java.lang.String, java.lang.Boolean, java.lang.String, java.lang.String, java.lang.String) with an additional flag called transform.
 java.lang.Object UserDaoBase.create(int transform, java.lang.Boolean active, java.lang.String adress, java.lang.String nom, java.lang.String password, java.lang.String primerCognom, Role rol, java.lang.String segonCognom, java.lang.String userId)
           
 java.lang.Object RoleDao.create(int transform, Role role)
           Does the same thing as RoleDao.create(edu.uoc.tfc.dbmodel.security.Role) with an additional flag called transform.
 java.lang.Object RoleDaoBase.create(int transform, Role role)
           
 Role RoleDao.create(Role role)
          Creates an instance of edu.uoc.tfc.dbmodel.security.Role and adds it to the persistent store.
 Role RoleDaoBase.create(Role role)
           
static User User.Factory.newInstance(java.lang.String userId, java.lang.String password, java.lang.String adress, java.lang.Boolean active, java.lang.String nom, java.lang.String primerCognom, java.lang.String segonCognom, Role rol)
          Constructs a new instance of User, taking all possible properties (except the identifier(s))as arguments.
 void RoleDao.remove(Role role)
          Removes the instance of edu.uoc.tfc.dbmodel.security.Role from the persistent store.
 void RoleDaoBase.remove(Role role)
           
 void RoleDao.roleVOToEntity(RoleVO source, Role target, boolean copyIfNull)
          Copies the fields of RoleVO to the specified entity.
 void RoleDaoBase.roleVOToEntity(RoleVO source, Role target, boolean copyIfNull)
           
 void RoleDaoImpl.roleVOToEntity(RoleVO source, Role target, boolean copyIfNull)
           
 void User.setRol(Role rol)
           
 RoleVO RoleDao.toRoleVO(Role entity)
          Converts this DAO's entity to an object of type RoleVO.
 RoleVO RoleDaoBase.toRoleVO(Role entity)
           
 RoleVO RoleDaoImpl.toRoleVO(Role entity)
           
 void RoleDao.toRoleVO(Role source, RoleVO target)
          Copies the fields of the specified entity to the target value object.
 void RoleDaoBase.toRoleVO(Role source, RoleVO target)
           
 void RoleDaoImpl.toRoleVO(Role source, RoleVO target)
           
 void RoleDao.update(Role role)
          Updates the role instance in the persistent store.
 void RoleDaoBase.update(Role role)
           
 

Uses of Role in edu.uoc.tfc.dbmodel.security.crud
 

Methods in edu.uoc.tfc.dbmodel.security.crud that return Role
 Role RoleManageableDaoBase.create(java.lang.String roleId, java.lang.String description, java.lang.Long id, java.lang.Long[] users, java.lang.Long[] operations)
           
 Role RoleManageableDao.create(java.lang.String roleId, java.lang.String description, java.lang.Long id, java.lang.Long[] users, java.lang.Long[] operations)
           
 Role RoleManageableDaoBase.readById(java.lang.Long id)
           
 Role RoleManageableDao.readById(java.lang.Long id)
           
 Role RoleManageableDaoBase.update(java.lang.String roleId, java.lang.String description, java.lang.Long id, java.lang.Long[] users, java.lang.Long[] operations)
           
 Role RoleManageableDao.update(java.lang.String roleId, java.lang.String description, java.lang.Long id, java.lang.Long[] users, java.lang.Long[] operations)