// Code generated by go-swagger; DO NOT EDIT. package service // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "net/http" "github.com/go-openapi/runtime" ) // AccessCreatedCode is the HTTP code returned for type AccessCreated const AccessCreatedCode int = 201 /* AccessCreated access created swagger:response accessCreated */ type AccessCreated struct { } // NewAccessCreated creates AccessCreated with default headers values func NewAccessCreated() *AccessCreated { return &AccessCreated{} } // WriteResponse to the client func (o *AccessCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) { rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses rw.WriteHeader(201) } // AccessUnauthorizedCode is the HTTP code returned for type AccessUnauthorized const AccessUnauthorizedCode int = 401 /* AccessUnauthorized unauthorized swagger:response accessUnauthorized */ type AccessUnauthorized struct { } // NewAccessUnauthorized creates AccessUnauthorized with default headers values func NewAccessUnauthorized() *AccessUnauthorized { return &AccessUnauthorized{} } // WriteResponse to the client func (o *AccessUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) { rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses rw.WriteHeader(401) } // AccessInternalServerErrorCode is the HTTP code returned for type AccessInternalServerError const AccessInternalServerErrorCode int = 500 /* AccessInternalServerError internal server error swagger:response accessInternalServerError */ type AccessInternalServerError struct { } // NewAccessInternalServerError creates AccessInternalServerError with default headers values func NewAccessInternalServerError() *AccessInternalServerError { return &AccessInternalServerError{} } // WriteResponse to the client func (o *AccessInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) { rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses rw.WriteHeader(500) }