...

Source file src/github.com/go-openapi/runtime/client/response.go

Documentation: github.com/go-openapi/runtime/client

     1  // Copyright 2015 go-swagger maintainers
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //    http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package client
    16  
    17  import (
    18  	"io"
    19  	"net/http"
    20  
    21  	"github.com/go-openapi/runtime"
    22  )
    23  
    24  var _ runtime.ClientResponse = response{}
    25  
    26  func newResponse(resp *http.Response) runtime.ClientResponse { return response{resp: resp} }
    27  
    28  type response struct {
    29  	resp *http.Response
    30  }
    31  
    32  func (r response) Code() int {
    33  	return r.resp.StatusCode
    34  }
    35  
    36  func (r response) Message() string {
    37  	return r.resp.Status
    38  }
    39  
    40  func (r response) GetHeader(name string) string {
    41  	return r.resp.Header.Get(name)
    42  }
    43  
    44  func (r response) GetHeaders(name string) []string {
    45  	return r.resp.Header.Values(name)
    46  }
    47  
    48  func (r response) Body() io.ReadCloser {
    49  	return r.resp.Body
    50  }
    51  

View as plain text