Adding logical/identity.go to OSS (#3054)

This commit is contained in:
Vishal Nayak 2017-07-27 11:56:32 -04:00 committed by Jeff Mitchell
parent a3b5e18da0
commit f6b03e8b1b
1 changed files with 26 additions and 0 deletions

26
logical/identity.go Normal file
View File

@ -0,0 +1,26 @@
package logical
// Persona represents the information used by core to create implicit entity.
// Implicit entities get created when a client authenticates successfully from
// any of the authentication backends (except token backend).
//
// This is applicable to enterprise binaries only. Persona should be set in the
// Auth response returned by the credential backends. This structure is placed
// in the open source repository only to enable custom authetication plugins to
// be used along with enterprise binary. The custom auth plugins should make
// use of this and fill out the Persona information in the authentication
// response.
type Persona struct {
// MountType is the backend mount's type to which this identity belongs
// to.
MountType string `json:"mount_type" structs:"mount_type" mapstructure:"mount_type"`
// MountAccessor is the identifier of the mount entry to which
// this identity
// belongs to.
MountAccessor string `json:"mount_accessor" structs:"mount_accessor" mapstructure:"mount_accessor"`
// Name is the identifier of this identity in its
// authentication source.
Name string `json:"name" structs:"name" mapstructure:"name"`
}