* @throws SystemException
*/
public AccessRightRole createAccessRightRole(Database db, AccessRightRoleVO accessRightRoleVO, AccessRight accessRight) throws SystemException, Exception
{
AccessRightRole accessRightRole = new AccessRightRoleImpl();
accessRightRole.setValueObject(accessRightRoleVO);
accessRightRole.setAccessRight(accessRight);
db.create(accessRightRole);
return accessRightRole;
}