private Map<Operation, OperationTypes> operationsCache = new HashMap<Operation, OperationTypes>();
public ComponentInvocationProxy(RuntimeEndpoint wire, Class javaClass)
throws RequestConfigurationException {
this.wire = wire;
Interface interfaze = wire.getComponentTypeServiceInterfaceContract().getInterface();
operationsMap = OperationMapper.mapOperationNameToMethod(javaClass);
operationMethodMapping = OperationMapper.mapOperationToMethod(interfaze.getOperations(), javaClass);
methodOperationMapping = OperationMapper.mapMethodToOperation(interfaze.getOperations(), javaClass);
cacheOperationTypes(interfaze.getOperations());
}