I am working with ZF2, Doctrine ORM and BjyAuthorize.
The problem is that when I got logged in the method getRoles of the identity returns empty.
class User implements UserInterface, ProviderInterface{
/**
     * @var \Doctrine\Common\Collections\Collection
     *
     * @ORM\ManyToMany(targetEntity="Application\Entity\Role", inversedBy="user")
     * @ORM\JoinTable(name="user_role_linker",
     *   joinColumns={
     *     @ORM\JoinColumn(name="user_id", referencedColumnName="user_id")
     *   },
     *   inverseJoinColumns={
     *     @ORM\JoinColumn(name="role_id", referencedColumnName="id")
     *   }
     * )
     */
    protected $roles;
    public function __construct() {
        $this->roles = new \Doctrine\Common\Collections\ArrayCollection();
    }
 public function addRole(\Application\Entity\Role $role) {
        $this->roles[] = $role;
        return $this;
    }
    /**
     * Remove role
     *
     * @param \Application\Entity\Role $role
     */
    public function removeRole(\Application\Entity\Role $role) {
        $this->roles->removeElement($role);
    }
    /**
     * Get role
     *
     * @return \Doctrine\Common\Collections\Collection 
     */
    public function getRoles() {
        return $this->roles->getValues();
    }
}
In the other hand, if I get the entity in the controller and I use getRoles, I get the values without any problem.
Could you please tell me which one could be the problem?
This is my zfc-user-doctrine-orm-global:
<?php
return array(
    'doctrine' => array(
        'driver' => array(
            // overriding zfc-user-doctrine-orm's config
            'zfcuser_entity' => array(
                'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
                'paths' => 'module\Application\src\Application\Entity',
            ),
            'orm_default' => array(
                'drivers' => array(
                    'Application' => 'zfcuser_entity',
                ),
            ),
        ),
    ),
    'zfcuser' => array(
        // telling ZfcUser to use our own class
        'user_entity_class'       => '\Application\Entity\User',
        // telling ZfcUserDoctrineORM to skip the entities it defines
        'enable_default_entities' => false,
    ),
    'bjyauthorize' => array(
        // Using the authentication identity provider, which basically reads the roles from the auth service's identity
        'identity_provider' => 'BjyAuthorize\Provider\Identity\AuthenticationIdentityProvider',
        'role_providers'        => array(
            // using an object repository (entity repository) to load all roles into our ACL
            'BjyAuthorize\Provider\Role\ObjectRepositoryProvider' => array(
                'object_manager'    => 'doctrine.entitymanager.orm_default',
                'role_entity_class' => 'Application\Entity\Role',
             ),
        ),
    ),
);
				
                        
Do you have your roles defined in 'role' table, and userid <-> roleid in user_role_linker table?