forked from TrueCloudLab/frostfs-api-go
Add v2
version to go module name
Replace all elements from `v2` to root directory. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
2d70391e31
commit
25da5d2e13
267 changed files with 116 additions and 17991 deletions
851
session/types.go
Normal file
851
session/types.go
Normal file
|
@ -0,0 +1,851 @@
|
|||
package session
|
||||
|
||||
import (
|
||||
"github.com/nspcc-dev/neofs-api-go/v2/acl"
|
||||
"github.com/nspcc-dev/neofs-api-go/v2/refs"
|
||||
"github.com/nspcc-dev/neofs-api-go/v2/status"
|
||||
)
|
||||
|
||||
type CreateRequestBody struct {
|
||||
ownerID *refs.OwnerID
|
||||
|
||||
expiration uint64
|
||||
}
|
||||
|
||||
type CreateRequest struct {
|
||||
body *CreateRequestBody
|
||||
|
||||
RequestHeaders
|
||||
}
|
||||
|
||||
type CreateResponseBody struct {
|
||||
id []byte
|
||||
|
||||
sessionKey []byte
|
||||
}
|
||||
|
||||
type CreateResponse struct {
|
||||
body *CreateResponseBody
|
||||
|
||||
ResponseHeaders
|
||||
}
|
||||
|
||||
type XHeader struct {
|
||||
key, val string
|
||||
}
|
||||
|
||||
type TokenLifetime struct {
|
||||
exp, nbf, iat uint64
|
||||
}
|
||||
|
||||
type ObjectSessionVerb uint32
|
||||
|
||||
type ObjectSessionContext struct {
|
||||
verb ObjectSessionVerb
|
||||
|
||||
addr *refs.Address
|
||||
}
|
||||
|
||||
type SessionTokenContext interface {
|
||||
sessionTokenContext()
|
||||
}
|
||||
|
||||
type SessionTokenBody struct {
|
||||
id []byte
|
||||
|
||||
ownerID *refs.OwnerID
|
||||
|
||||
lifetime *TokenLifetime
|
||||
|
||||
sessionKey []byte
|
||||
|
||||
ctx SessionTokenContext
|
||||
}
|
||||
|
||||
type SessionToken struct {
|
||||
body *SessionTokenBody
|
||||
|
||||
sig *refs.Signature
|
||||
}
|
||||
|
||||
type RequestVerificationHeader struct {
|
||||
bodySig, metaSig, originSig *refs.Signature
|
||||
|
||||
origin *RequestVerificationHeader
|
||||
}
|
||||
|
||||
type RequestMetaHeader struct {
|
||||
version *refs.Version
|
||||
|
||||
ttl uint32
|
||||
|
||||
epoch uint64
|
||||
|
||||
xHeaders []*XHeader
|
||||
|
||||
sessionToken *SessionToken
|
||||
|
||||
bearerToken *acl.BearerToken
|
||||
|
||||
origin *RequestMetaHeader
|
||||
}
|
||||
|
||||
type ResponseVerificationHeader struct {
|
||||
bodySig, metaSig, originSig *refs.Signature
|
||||
|
||||
origin *ResponseVerificationHeader
|
||||
}
|
||||
|
||||
type ResponseMetaHeader struct {
|
||||
version *refs.Version
|
||||
|
||||
ttl uint32
|
||||
|
||||
epoch uint64
|
||||
|
||||
xHeaders []*XHeader
|
||||
|
||||
origin *ResponseMetaHeader
|
||||
|
||||
status *status.Status
|
||||
}
|
||||
|
||||
const (
|
||||
ObjectVerbUnknown ObjectSessionVerb = iota
|
||||
ObjectVerbPut
|
||||
ObjectVerbGet
|
||||
ObjectVerbHead
|
||||
ObjectVerbSearch
|
||||
ObjectVerbDelete
|
||||
ObjectVerbRange
|
||||
ObjectVerbRangeHash
|
||||
)
|
||||
|
||||
func (c *CreateRequestBody) GetOwnerID() *refs.OwnerID {
|
||||
if c != nil {
|
||||
return c.ownerID
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateRequestBody) SetOwnerID(v *refs.OwnerID) {
|
||||
if c != nil {
|
||||
c.ownerID = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateRequestBody) GetExpiration() uint64 {
|
||||
if c != nil {
|
||||
return c.expiration
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
func (c *CreateRequestBody) SetExpiration(v uint64) {
|
||||
if c != nil {
|
||||
c.expiration = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateRequest) GetBody() *CreateRequestBody {
|
||||
if c != nil {
|
||||
return c.body
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateRequest) SetBody(v *CreateRequestBody) {
|
||||
if c != nil {
|
||||
c.body = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateRequest) GetMetaHeader() *RequestMetaHeader {
|
||||
if c != nil {
|
||||
return c.metaHeader
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateRequest) SetMetaHeader(v *RequestMetaHeader) {
|
||||
if c != nil {
|
||||
c.metaHeader = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateRequest) GetVerificationHeader() *RequestVerificationHeader {
|
||||
if c != nil {
|
||||
return c.verifyHeader
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateRequest) SetVerificationHeader(v *RequestVerificationHeader) {
|
||||
if c != nil {
|
||||
c.verifyHeader = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateResponseBody) GetID() []byte {
|
||||
if c != nil {
|
||||
return c.id
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateResponseBody) SetID(v []byte) {
|
||||
if c != nil {
|
||||
c.id = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateResponseBody) GetSessionKey() []byte {
|
||||
if c != nil {
|
||||
return c.sessionKey
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateResponseBody) SetSessionKey(v []byte) {
|
||||
if c != nil {
|
||||
c.sessionKey = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateResponse) GetBody() *CreateResponseBody {
|
||||
if c != nil {
|
||||
return c.body
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateResponse) SetBody(v *CreateResponseBody) {
|
||||
if c != nil {
|
||||
c.body = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateResponse) GetMetaHeader() *ResponseMetaHeader {
|
||||
if c != nil {
|
||||
return c.metaHeader
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateResponse) SetMetaHeader(v *ResponseMetaHeader) {
|
||||
if c != nil {
|
||||
c.metaHeader = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *CreateResponse) GetVerificationHeader() *ResponseVerificationHeader {
|
||||
if c != nil {
|
||||
return c.verifyHeader
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CreateResponse) SetVerificationHeader(v *ResponseVerificationHeader) {
|
||||
if c != nil {
|
||||
c.verifyHeader = v
|
||||
}
|
||||
}
|
||||
|
||||
func (x *XHeader) GetKey() string {
|
||||
if x != nil {
|
||||
return x.key
|
||||
}
|
||||
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *XHeader) SetKey(v string) {
|
||||
if x != nil {
|
||||
x.key = v
|
||||
}
|
||||
}
|
||||
|
||||
func (x *XHeader) GetValue() string {
|
||||
if x != nil {
|
||||
return x.val
|
||||
}
|
||||
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *XHeader) SetValue(v string) {
|
||||
if x != nil {
|
||||
x.val = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestVerificationHeader) GetBodySignature() *refs.Signature {
|
||||
if r != nil {
|
||||
return r.bodySig
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestVerificationHeader) SetBodySignature(v *refs.Signature) {
|
||||
if r != nil {
|
||||
r.bodySig = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestVerificationHeader) GetMetaSignature() *refs.Signature {
|
||||
if r != nil {
|
||||
return r.metaSig
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestVerificationHeader) SetMetaSignature(v *refs.Signature) {
|
||||
if r != nil {
|
||||
r.metaSig = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestVerificationHeader) GetOriginSignature() *refs.Signature {
|
||||
if r != nil {
|
||||
return r.originSig
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestVerificationHeader) SetOriginSignature(v *refs.Signature) {
|
||||
if r != nil {
|
||||
r.originSig = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestVerificationHeader) GetOrigin() *RequestVerificationHeader {
|
||||
if r != nil {
|
||||
return r.origin
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestVerificationHeader) SetOrigin(v *RequestVerificationHeader) {
|
||||
if r != nil {
|
||||
r.origin = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) GetVersion() *refs.Version {
|
||||
if r != nil {
|
||||
return r.version
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) SetVersion(v *refs.Version) {
|
||||
if r != nil {
|
||||
r.version = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) GetTTL() uint32 {
|
||||
if r != nil {
|
||||
return r.ttl
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) SetTTL(v uint32) {
|
||||
if r != nil {
|
||||
r.ttl = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) GetEpoch() uint64 {
|
||||
if r != nil {
|
||||
return r.epoch
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) SetEpoch(v uint64) {
|
||||
if r != nil {
|
||||
r.epoch = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) GetXHeaders() []*XHeader {
|
||||
if r != nil {
|
||||
return r.xHeaders
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) SetXHeaders(v []*XHeader) {
|
||||
if r != nil {
|
||||
r.xHeaders = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) GetSessionToken() *SessionToken {
|
||||
if r != nil {
|
||||
return r.sessionToken
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) SetSessionToken(v *SessionToken) {
|
||||
if r != nil {
|
||||
r.sessionToken = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) GetBearerToken() *acl.BearerToken {
|
||||
if r != nil {
|
||||
return r.bearerToken
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) SetBearerToken(v *acl.BearerToken) {
|
||||
if r != nil {
|
||||
r.bearerToken = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) GetOrigin() *RequestMetaHeader {
|
||||
if r != nil {
|
||||
return r.origin
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *RequestMetaHeader) SetOrigin(v *RequestMetaHeader) {
|
||||
if r != nil {
|
||||
r.origin = v
|
||||
}
|
||||
}
|
||||
|
||||
func (l *TokenLifetime) GetExp() uint64 {
|
||||
if l != nil {
|
||||
return l.exp
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
func (l *TokenLifetime) SetExp(v uint64) {
|
||||
if l != nil {
|
||||
l.exp = v
|
||||
}
|
||||
}
|
||||
|
||||
func (l *TokenLifetime) GetNbf() uint64 {
|
||||
if l != nil {
|
||||
return l.nbf
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
func (l *TokenLifetime) SetNbf(v uint64) {
|
||||
if l != nil {
|
||||
l.nbf = v
|
||||
}
|
||||
}
|
||||
|
||||
func (l *TokenLifetime) GetIat() uint64 {
|
||||
if l != nil {
|
||||
return l.iat
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
func (l *TokenLifetime) SetIat(v uint64) {
|
||||
if l != nil {
|
||||
l.iat = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseVerificationHeader) GetBodySignature() *refs.Signature {
|
||||
if r != nil {
|
||||
return r.bodySig
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *ResponseVerificationHeader) SetBodySignature(v *refs.Signature) {
|
||||
if r != nil {
|
||||
r.bodySig = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseVerificationHeader) GetMetaSignature() *refs.Signature {
|
||||
if r != nil {
|
||||
return r.metaSig
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *ResponseVerificationHeader) SetMetaSignature(v *refs.Signature) {
|
||||
if r != nil {
|
||||
r.metaSig = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseVerificationHeader) GetOriginSignature() *refs.Signature {
|
||||
if r != nil {
|
||||
return r.originSig
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *ResponseVerificationHeader) SetOriginSignature(v *refs.Signature) {
|
||||
if r != nil {
|
||||
r.originSig = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseVerificationHeader) GetOrigin() *ResponseVerificationHeader {
|
||||
if r != nil {
|
||||
return r.origin
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *ResponseVerificationHeader) SetOrigin(v *ResponseVerificationHeader) {
|
||||
if r != nil {
|
||||
r.origin = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) GetVersion() *refs.Version {
|
||||
if r != nil {
|
||||
return r.version
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) SetVersion(v *refs.Version) {
|
||||
if r != nil {
|
||||
r.version = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) GetTTL() uint32 {
|
||||
if r != nil {
|
||||
return r.ttl
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) SetTTL(v uint32) {
|
||||
if r != nil {
|
||||
r.ttl = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) GetEpoch() uint64 {
|
||||
if r != nil {
|
||||
return r.epoch
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) SetEpoch(v uint64) {
|
||||
if r != nil {
|
||||
r.epoch = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) GetXHeaders() []*XHeader {
|
||||
if r != nil {
|
||||
return r.xHeaders
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) SetXHeaders(v []*XHeader) {
|
||||
if r != nil {
|
||||
r.xHeaders = v
|
||||
}
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) GetOrigin() *ResponseMetaHeader {
|
||||
if r != nil {
|
||||
return r.origin
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (r *ResponseMetaHeader) SetOrigin(v *ResponseMetaHeader) {
|
||||
if r != nil {
|
||||
r.origin = v
|
||||
}
|
||||
}
|
||||
|
||||
// GetStatus returns response status.
|
||||
func (r *ResponseMetaHeader) GetStatus() *status.Status {
|
||||
if r != nil {
|
||||
return r.status
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// SetStatus sets response status.
|
||||
func (r *ResponseMetaHeader) SetStatus(v *status.Status) {
|
||||
if r != nil {
|
||||
r.status = v
|
||||
}
|
||||
}
|
||||
|
||||
// SetStatus sets status of the message which can carry ResponseMetaHeader.
|
||||
//
|
||||
// Sets status field on the "highest" level of meta headers.
|
||||
// If meta header is missing in message, it is allocated.
|
||||
func SetStatus(msg interface {
|
||||
GetMetaHeader() *ResponseMetaHeader
|
||||
SetMetaHeader(*ResponseMetaHeader)
|
||||
}, st *status.Status) {
|
||||
meta := msg.GetMetaHeader()
|
||||
if meta == nil {
|
||||
meta = new(ResponseMetaHeader)
|
||||
msg.SetMetaHeader(meta)
|
||||
}
|
||||
|
||||
meta.SetStatus(st)
|
||||
}
|
||||
|
||||
func (c *ObjectSessionContext) sessionTokenContext() {}
|
||||
|
||||
func (c *ObjectSessionContext) GetVerb() ObjectSessionVerb {
|
||||
if c != nil {
|
||||
return c.verb
|
||||
}
|
||||
|
||||
return ObjectVerbUnknown
|
||||
}
|
||||
|
||||
func (c *ObjectSessionContext) SetVerb(v ObjectSessionVerb) {
|
||||
if c != nil {
|
||||
c.verb = v
|
||||
}
|
||||
}
|
||||
|
||||
func (c *ObjectSessionContext) GetAddress() *refs.Address {
|
||||
if c != nil {
|
||||
return c.addr
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *ObjectSessionContext) SetAddress(v *refs.Address) {
|
||||
if c != nil {
|
||||
c.addr = v
|
||||
}
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) GetID() []byte {
|
||||
if t != nil {
|
||||
return t.id
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) SetID(v []byte) {
|
||||
if t != nil {
|
||||
t.id = v
|
||||
}
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) GetOwnerID() *refs.OwnerID {
|
||||
if t != nil {
|
||||
return t.ownerID
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) SetOwnerID(v *refs.OwnerID) {
|
||||
if t != nil {
|
||||
t.ownerID = v
|
||||
}
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) GetLifetime() *TokenLifetime {
|
||||
if t != nil {
|
||||
return t.lifetime
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) SetLifetime(v *TokenLifetime) {
|
||||
if t != nil {
|
||||
t.lifetime = v
|
||||
}
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) GetSessionKey() []byte {
|
||||
if t != nil {
|
||||
return t.sessionKey
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) SetSessionKey(v []byte) {
|
||||
if t != nil {
|
||||
t.sessionKey = v
|
||||
}
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) GetContext() SessionTokenContext {
|
||||
if t != nil {
|
||||
return t.ctx
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *SessionTokenBody) SetContext(v SessionTokenContext) {
|
||||
if t != nil {
|
||||
t.ctx = v
|
||||
}
|
||||
}
|
||||
|
||||
func (t *SessionToken) GetBody() *SessionTokenBody {
|
||||
if t != nil {
|
||||
return t.body
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *SessionToken) SetBody(v *SessionTokenBody) {
|
||||
if t != nil {
|
||||
t.body = v
|
||||
}
|
||||
}
|
||||
|
||||
func (t *SessionToken) GetSignature() *refs.Signature {
|
||||
if t != nil {
|
||||
return t.sig
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (t *SessionToken) SetSignature(v *refs.Signature) {
|
||||
if t != nil {
|
||||
t.sig = v
|
||||
}
|
||||
}
|
||||
|
||||
// ContainerSessionVerb represents NeoFS API v2
|
||||
// session.ContainerSessionContext.Verb enumeration.
|
||||
type ContainerSessionVerb uint32
|
||||
|
||||
const (
|
||||
// ContainerVerbUnknown corresponds to VERB_UNSPECIFIED enum value.
|
||||
ContainerVerbUnknown ContainerSessionVerb = iota
|
||||
|
||||
// ContainerVerbPut corresponds to PUT enum value.
|
||||
ContainerVerbPut
|
||||
|
||||
// ContainerVerbDelete corresponds to DELETE enum value.
|
||||
ContainerVerbDelete
|
||||
|
||||
// ContainerVerbSetEACL corresponds to SETEACL enum value.
|
||||
ContainerVerbSetEACL
|
||||
)
|
||||
|
||||
// ContainerSessionContext represents structure of the
|
||||
// NeoFS API v2 session.ContainerSessionContext message.
|
||||
type ContainerSessionContext struct {
|
||||
verb ContainerSessionVerb
|
||||
|
||||
wildcard bool
|
||||
|
||||
cid *refs.ContainerID
|
||||
}
|
||||
|
||||
func (x *ContainerSessionContext) sessionTokenContext() {}
|
||||
|
||||
// Verb returns type of request for which the token is issued.
|
||||
func (x *ContainerSessionContext) Verb() ContainerSessionVerb {
|
||||
if x != nil {
|
||||
return x.verb
|
||||
}
|
||||
|
||||
return ContainerVerbUnknown
|
||||
}
|
||||
|
||||
// SetVerb sets type of request for which the token is issued.
|
||||
func (x *ContainerSessionContext) SetVerb(v ContainerSessionVerb) {
|
||||
if x != nil {
|
||||
x.verb = v
|
||||
}
|
||||
}
|
||||
|
||||
// Wildcard returns wildcard flag of the container session.
|
||||
func (x *ContainerSessionContext) Wildcard() bool {
|
||||
if x != nil {
|
||||
return x.wildcard
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// SetWildcard sets wildcard flag of the container session.
|
||||
func (x *ContainerSessionContext) SetWildcard(v bool) {
|
||||
if x != nil {
|
||||
x.wildcard = v
|
||||
}
|
||||
}
|
||||
|
||||
// ContainerID returns identifier of the container related to the session.
|
||||
func (x *ContainerSessionContext) ContainerID() *refs.ContainerID {
|
||||
if x != nil {
|
||||
return x.cid
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// SetContainerID sets identifier of the container related to the session.
|
||||
func (x *ContainerSessionContext) SetContainerID(v *refs.ContainerID) {
|
||||
if x != nil {
|
||||
x.cid = v
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue