binding

package
v1.0.4 Latest Latest
Warning

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

Go to latest
Published: Oct 29, 2020 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

View Source
const (
	MIMEJSON = "application/json"
	MIMEXML  = "application/xml"
)

MIME

Variables

View Source
var (
	JSON = jsonBinding{}
	XML  = xmlBinding{}
	Form = formBinding{}
)

Binding

Functions

This section is empty.

Types

type Binding

type Binding interface {
	Name() string
	Bind(cc.ChaincodeStubInterface, interface{}) error
}

Binding http binding request interface.

func Default

func Default(contentType string) Binding

Default get by binding type by method and contexttype.

type StructValidator

type StructValidator interface {
	// ValidateStruct can receive any kind of type and it should never panic, even if the configuration is not right.
	// If the received type is not a struct, any validation should be skipped and nil must be returned.
	// If the received type is a struct or pointer to a struct, the validation should be performed.
	// If the struct is not valid or the validation itself fails, a descriptive error should be returned.
	// Otherwise nil must be returned.
	ValidateStruct(interface{}) error

	// RegisterValidation adds a validation Func to a Validate's map of validators denoted by the key
	// NOTE: if the key already exists, the previous validation function will be replaced.
	// NOTE: this method is not thread-safe it is intended that these all be registered prior to any validation
	RegisterValidation(string, validator.Func) error

	//GetValidate return the default validate
	GetValidate() *validator.Validate
}

StructValidator http validator interface.

var Validator StructValidator = &defaultValidator{}

Validator default validator.

Jump to

Keyboard shortcuts

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