forked from TrueCloudLab/frostfs-api-go
Airat Arifullin
9789b79b1d
* Regenerate protobufs as APE specific type are defined as separate package; * Move `ape` package related utils methods from `apemanager`. Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
71 lines
964 B
Go
71 lines
964 B
Go
package ape
|
|
|
|
type TargetType uint32
|
|
|
|
const (
|
|
TargetTypeUndefined TargetType = iota
|
|
TargetTypeNamespace
|
|
TargetTypeContainer
|
|
TargetTypeUser
|
|
TargetTypeGroup
|
|
)
|
|
|
|
type ChainTarget struct {
|
|
targeType TargetType
|
|
|
|
name string
|
|
}
|
|
|
|
func (ct *ChainTarget) SetTargetType(targeType TargetType) {
|
|
ct.targeType = targeType
|
|
}
|
|
|
|
func (ct *ChainTarget) SetName(name string) {
|
|
ct.name = name
|
|
}
|
|
|
|
func (ct *ChainTarget) GetTargetType() TargetType {
|
|
if ct != nil {
|
|
return ct.targeType
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
func (ct *ChainTarget) GetName() string {
|
|
if ct != nil {
|
|
return ct.name
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
type chainKind interface {
|
|
isChainKind()
|
|
}
|
|
|
|
type Chain struct {
|
|
kind chainKind
|
|
}
|
|
|
|
func (c *Chain) SetKind(kind chainKind) {
|
|
c.kind = kind
|
|
}
|
|
|
|
func (c *Chain) GetKind() chainKind {
|
|
return c.kind
|
|
}
|
|
|
|
type ChainRaw struct {
|
|
Raw []byte
|
|
}
|
|
|
|
func (*ChainRaw) isChainKind() {}
|
|
|
|
func (c *ChainRaw) SetRaw(raw []byte) {
|
|
c.Raw = raw
|
|
}
|
|
|
|
func (c *ChainRaw) GetRaw() []byte {
|
|
return c.Raw
|
|
}
|