2016-02-07 19:55:17 -05:00
|
|
|
package credentials
|
|
|
|
|
|
|
|
import (
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-02-07 19:55:17 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Store is the interface that any credentials store must implement.
|
|
|
|
type Store interface {
|
|
|
|
// Erase removes credentials from the store for a given server.
|
|
|
|
Erase(serverAddress string) error
|
|
|
|
// Get retrieves credentials from the store for a given server.
|
|
|
|
Get(serverAddress string) (types.AuthConfig, error)
|
2016-03-01 12:04:35 -05:00
|
|
|
// GetAll retrieves all the credentials from the store.
|
|
|
|
GetAll() (map[string]types.AuthConfig, error)
|
2016-02-07 19:55:17 -05:00
|
|
|
// Store saves credentials in the store.
|
|
|
|
Store(authConfig types.AuthConfig) error
|
|
|
|
}
|