PojiProxy handler = new InvokableContextClusteredProxyInvocationHandler(this.getContainerName(),
this.getContainerGuid(), locator, interceptors, this.getSessionId(),
this.getFamilyWrapper(), this.getLoadBalancePolicy(), this.getPartitionName(), true);
Class<?>[] interfaces = new Class<?>[]
{InvokableContext.class};
InvokableContext container = (InvokableContext) Proxy.newProxyInstance(InvokableContext.class.getClassLoader(),
interfaces, handler);
// Return
return container;
}