2023-03-15 12:00:52 -04:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-10 21:14:03 -04:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-15 12:00:52 -04:00
|
|
|
|
2015-03-29 20:42:26 -04:00
|
|
|
package token
|
|
|
|
|
|
2015-12-14 16:23:04 -05:00
|
|
|
// TokenHelper is an interface that contains basic operations that must be
|
|
|
|
|
// implemented by a token helper
|
|
|
|
|
type TokenHelper interface {
|
2017-09-07 21:56:39 -04:00
|
|
|
// Path displays a method-specific path; for the internal helper this
|
2015-12-14 16:23:04 -05:00
|
|
|
// is the location of the token stored on disk; for the external helper
|
|
|
|
|
// this is the location of the binary being invoked
|
|
|
|
|
Path() string
|
|
|
|
|
Erase() error
|
|
|
|
|
Get() (string, error)
|
|
|
|
|
Store(string) error
|
2015-03-29 20:42:26 -04:00
|
|
|
}
|