}
public <T> T createCallbackProxy(Class<T> interfaze, List<? extends Invocable> wires) throws ProxyCreationException {
ServiceReferenceImpl<T> callbackReference = null;
try {
callbackReference = new CallbackServiceReferenceImpl(interfaze, wires);
} catch (ServiceRuntimeException e) {
// [rfeng] In case that the call is not from a bidirectional interface, the field should be injected with null
callbackReference = null;
}
return callbackReference != null ? createCallbackProxy(callbackReference) : null;