mirror of
https://github.com/openziti/zrok.git
synced 2024-11-26 01:54:09 +01:00
110 lines
2.9 KiB
Go
110 lines
2.9 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package share
|
|
|
|
// 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"
|
|
)
|
|
|
|
// OauthAuthenticateOKCode is the HTTP code returned for type OauthAuthenticateOK
|
|
const OauthAuthenticateOKCode int = 200
|
|
|
|
/*
|
|
OauthAuthenticateOK testing
|
|
|
|
swagger:response oauthAuthenticateOK
|
|
*/
|
|
type OauthAuthenticateOK struct {
|
|
}
|
|
|
|
// NewOauthAuthenticateOK creates OauthAuthenticateOK with default headers values
|
|
func NewOauthAuthenticateOK() *OauthAuthenticateOK {
|
|
|
|
return &OauthAuthenticateOK{}
|
|
}
|
|
|
|
// WriteResponse to the client
|
|
func (o *OauthAuthenticateOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
|
|
|
|
rw.WriteHeader(200)
|
|
}
|
|
|
|
// OauthAuthenticateFoundCode is the HTTP code returned for type OauthAuthenticateFound
|
|
const OauthAuthenticateFoundCode int = 302
|
|
|
|
/*
|
|
OauthAuthenticateFound redirect back to share
|
|
|
|
swagger:response oauthAuthenticateFound
|
|
*/
|
|
type OauthAuthenticateFound struct {
|
|
/*Redirect URL
|
|
|
|
*/
|
|
Location string `json:"location"`
|
|
}
|
|
|
|
// NewOauthAuthenticateFound creates OauthAuthenticateFound with default headers values
|
|
func NewOauthAuthenticateFound() *OauthAuthenticateFound {
|
|
|
|
return &OauthAuthenticateFound{}
|
|
}
|
|
|
|
// WithLocation adds the location to the oauth authenticate found response
|
|
func (o *OauthAuthenticateFound) WithLocation(location string) *OauthAuthenticateFound {
|
|
o.Location = location
|
|
return o
|
|
}
|
|
|
|
// SetLocation sets the location to the oauth authenticate found response
|
|
func (o *OauthAuthenticateFound) SetLocation(location string) {
|
|
o.Location = location
|
|
}
|
|
|
|
// WriteResponse to the client
|
|
func (o *OauthAuthenticateFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
// response header location
|
|
|
|
location := o.Location
|
|
if location != "" {
|
|
rw.Header().Set("location", location)
|
|
}
|
|
|
|
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
|
|
|
|
rw.WriteHeader(302)
|
|
}
|
|
|
|
// OauthAuthenticateInternalServerErrorCode is the HTTP code returned for type OauthAuthenticateInternalServerError
|
|
const OauthAuthenticateInternalServerErrorCode int = 500
|
|
|
|
/*
|
|
OauthAuthenticateInternalServerError internal server error
|
|
|
|
swagger:response oauthAuthenticateInternalServerError
|
|
*/
|
|
type OauthAuthenticateInternalServerError struct {
|
|
}
|
|
|
|
// NewOauthAuthenticateInternalServerError creates OauthAuthenticateInternalServerError with default headers values
|
|
func NewOauthAuthenticateInternalServerError() *OauthAuthenticateInternalServerError {
|
|
|
|
return &OauthAuthenticateInternalServerError{}
|
|
}
|
|
|
|
// WriteResponse to the client
|
|
func (o *OauthAuthenticateInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
|
|
|
|
rw.WriteHeader(500)
|
|
}
|