E.g., http://docs.jboss.org/infinispan/4.2/apidocs/config.html#ce_default_transaction under useEagerLocking - the Javadoc link takes you to TransactionType#useEagerLocking which has no Javdocs on it!
The programmatic way of setting this is to use Configuration#setUseEagerLocking(). So the link should go to http://docs.jboss.org/infinispan/4.2/apidocs/org/infinispan/config/Configuration.html#setUseEagerLocking(boolean) which has actual Javadocs on it.
The bean already has a ref to this setter thanks to the @ConfigurationDocRef annotation so it should be easy.