I don't think that you can specify two different authentication providers because it would introduce a logic problem. They both get the same credential arguments and result logically in either an authenticated or an unauthenticated state. What if XProvider authenticates to user1 but YProvider says authentication failed? The two would compete.
Instead of this:
<security:authentication-manager>
<security:authentication-provider ref="FacebookAuthProvider" />
<security:authentication-provider ref="LinkedInAuthProvider" />
</security:authentication-manager>
Try writing a custom authentication provider that could handle both types of AuthenticationSchemes:
<security:authentication-manager>
<security:authentication-provider ref="OpenAuthProvider" />
</security:authentication-manager>
And this provider can delegate to one or more handlers:
FacebookAuthProviderHandler
LinkedInAuthProviderHandler
etc...
The provider can reconcile the results of the individual handlers into a single result.