operations

package
v0.0.0-...-c761d76 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 2, 2019 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Hackzurich2019BeAPI

type Hackzurich2019BeAPI struct {
	Middleware func(middleware.Builder) http.Handler

	// BasicAuthenticator generates a runtime.Authenticator from the supplied basic auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	BasicAuthenticator func(security.UserPassAuthentication) runtime.Authenticator
	// APIKeyAuthenticator generates a runtime.Authenticator from the supplied token auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	APIKeyAuthenticator func(string, string, security.TokenAuthentication) runtime.Authenticator
	// BearerAuthenticator generates a runtime.Authenticator from the supplied bearer token auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	BearerAuthenticator func(string, security.ScopedTokenAuthentication) runtime.Authenticator

	// JSONConsumer registers a consumer for a "application/json" mime type
	JSONConsumer runtime.Consumer

	// JSONProducer registers a producer for a "application/json" mime type
	JSONProducer runtime.Producer

	// GameDestroyDisasterHandler sets the operation handler for the destroy disaster operation
	GameDestroyDisasterHandler game.DestroyDisasterHandler
	// GameGetGameDescriptionHandler sets the operation handler for the get game description operation
	GameGetGameDescriptionHandler game.GetGameDescriptionHandler
	// GameGetGameStateHandler sets the operation handler for the get game state operation
	GameGetGameStateHandler game.GetGameStateHandler
	// GamePauseGameHandler sets the operation handler for the pause game operation
	GamePauseGameHandler game.PauseGameHandler
	// GameResumeGameHandler sets the operation handler for the resume game operation
	GameResumeGameHandler game.ResumeGameHandler
	// GameStartGameHandler sets the operation handler for the start game operation
	GameStartGameHandler game.StartGameHandler

	// ServeError is called when an error is received, there is a default handler
	// but you can set your own with this
	ServeError func(http.ResponseWriter, *http.Request, error)

	// ServerShutdown is called when the HTTP(S) server is shut down and done
	// handling all active connections and does not accept connections any more
	ServerShutdown func()

	// Custom command line argument groups with their descriptions
	CommandLineOptionsGroups []swag.CommandLineOptionsGroup

	// User defined logger function.
	Logger func(string, ...interface{})
	// contains filtered or unexported fields
}

Hackzurich2019BeAPI HackZurich 2019 API

func NewHackzurich2019BeAPI

func NewHackzurich2019BeAPI(spec *loads.Document) *Hackzurich2019BeAPI

NewHackzurich2019BeAPI creates a new Hackzurich2019Be instance

func (*Hackzurich2019BeAPI) AuthenticatorsFor

func (o *Hackzurich2019BeAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator

AuthenticatorsFor gets the authenticators for the specified security schemes

func (*Hackzurich2019BeAPI) Authorizer

func (o *Hackzurich2019BeAPI) Authorizer() runtime.Authorizer

Authorizer returns the registered authorizer

func (*Hackzurich2019BeAPI) ConsumersFor

func (o *Hackzurich2019BeAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer

ConsumersFor gets the consumers for the specified media types

func (*Hackzurich2019BeAPI) Context

func (o *Hackzurich2019BeAPI) Context() *middleware.Context

Context returns the middleware context for the hackzurich2019 be API

func (*Hackzurich2019BeAPI) DefaultConsumes

func (o *Hackzurich2019BeAPI) DefaultConsumes() string

DefaultConsumes returns the default consumes media type

func (*Hackzurich2019BeAPI) DefaultProduces

func (o *Hackzurich2019BeAPI) DefaultProduces() string

DefaultProduces returns the default produces media type

func (*Hackzurich2019BeAPI) Formats

func (o *Hackzurich2019BeAPI) Formats() strfmt.Registry

Formats returns the registered string formats

func (*Hackzurich2019BeAPI) HandlerFor

func (o *Hackzurich2019BeAPI) HandlerFor(method, path string) (http.Handler, bool)

HandlerFor gets a http.Handler for the provided operation method and path

func (*Hackzurich2019BeAPI) Init

func (o *Hackzurich2019BeAPI) Init()

Init allows you to just initialize the handler cache, you can then recompose the middleware as you see fit

func (*Hackzurich2019BeAPI) ProducersFor

func (o *Hackzurich2019BeAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer

ProducersFor gets the producers for the specified media types

func (*Hackzurich2019BeAPI) RegisterConsumer

func (o *Hackzurich2019BeAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer)

RegisterConsumer allows you to add (or override) a consumer for a media type.

func (*Hackzurich2019BeAPI) RegisterFormat

func (o *Hackzurich2019BeAPI) RegisterFormat(name string, format strfmt.Format, validator strfmt.Validator)

RegisterFormat registers a custom format validator

func (*Hackzurich2019BeAPI) RegisterProducer

func (o *Hackzurich2019BeAPI) RegisterProducer(mediaType string, producer runtime.Producer)

RegisterProducer allows you to add (or override) a producer for a media type.

func (*Hackzurich2019BeAPI) Serve

Serve creates a http handler to serve the API over HTTP can be used directly in http.ListenAndServe(":8000", api.Serve(nil))

func (*Hackzurich2019BeAPI) ServeErrorFor

func (o *Hackzurich2019BeAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error)

ServeErrorFor gets a error handler for a given operation id

func (*Hackzurich2019BeAPI) SetDefaultConsumes

func (o *Hackzurich2019BeAPI) SetDefaultConsumes(mediaType string)

SetDefaultConsumes returns the default consumes media type

func (*Hackzurich2019BeAPI) SetDefaultProduces

func (o *Hackzurich2019BeAPI) SetDefaultProduces(mediaType string)

SetDefaultProduces sets the default produces media type

func (*Hackzurich2019BeAPI) SetSpec

func (o *Hackzurich2019BeAPI) SetSpec(spec *loads.Document)

SetSpec sets a spec that will be served for the clients.

func (*Hackzurich2019BeAPI) Validate

func (o *Hackzurich2019BeAPI) Validate() error

Validate validates the registrations in the Hackzurich2019BeAPI

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL