influxdb/common/user.go

14 lines
266 B
Go
Raw Normal View History

2013-10-25 20:03:52 +00:00
package common
type User interface {
GetName() string
IsDeleted() bool
IsClusterAdmin() bool
IsDbAdmin(db string) bool
GetDb() string
HasWriteAccess(name string) bool
GetWritePermission() string
2013-10-25 20:03:52 +00:00
HasReadAccess(name string) bool
GetReadPermission() string
2013-10-25 20:03:52 +00:00
}