PodHolder typedef
A tuple representing a pod and its class.
This type is used to store the pod instance and its class in the
AbstractAutowireCapablePodFactory class.
Example usage:
PodHolder holder = (myPodInstance, MyPodClass);
Object pod = holder.$1; // The pod instance
Class podClass = holder.$2; // The pod class
Implementation
typedef PodHolder = (Object pod, Class podClass);