public DefaultRequestFactory(MappingGateway mapping_gateway,
                              HttpContextTokenStoreMapper http_context_token_store_mapper)
 {
     this.mapping_gateway = mapping_gateway;
     this.http_context_token_store_mapper = http_context_token_store_mapper;
 }
 public DefaultRequest(TokenStore <string, string> payload, MappingGateway mapping_gateway, string raw_request_url)
 {
     this.url             = raw_request_url;
     this.payload         = payload;
     this.mapping_gateway = mapping_gateway;
 }
Exemple #3
0
 public DefaultRequestFactory(MappingGateway mapping_gateway,
                              HttpContextTokenStoreMapper http_context_token_store_mapper)
 {
     this.mapping_gateway = mapping_gateway;
     this.http_context_token_store_mapper = http_context_token_store_mapper;
 }