oauthclient

package
v1.5.0-rc.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 9, 2017 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Strategy = strategy{kapi.Scheme}

Strategy is the default logic that applies when creating or updating OAuthClient objects objects via the REST API.

Functions

func Matcher

Matcher returns a generic matcher for a given label and field selector.

func SelectableFields

func SelectableFields(obj *api.OAuthClient) fields.Set

SelectableFields returns a field set that can be used for filter selection

Types

type Getter added in v1.3.0

type Getter interface {
	GetClient(ctx kapi.Context, name string) (*api.OAuthClient, error)
}

Getter exposes a way to get a specific client. This is useful for other registries to get scope limitations on particular clients. This interface will make its easier to write a future cache on it

type Registry

type Registry interface {
	// ListClients obtains a list of clients that match a selector.
	ListClients(ctx kapi.Context, options *kapi.ListOptions) (*api.OAuthClientList, error)
	// GetClient retrieves a specific client.
	GetClient(ctx kapi.Context, name string) (*api.OAuthClient, error)
	// CreateClient creates a new client.
	CreateClient(ctx kapi.Context, client *api.OAuthClient) (*api.OAuthClient, error)
	// UpdateClient updates a client.
	UpdateClient(ctx kapi.Context, client *api.OAuthClient) (*api.OAuthClient, error)
	// DeleteClient deletes a client.
	DeleteClient(ctx kapi.Context, name string) error
}

Registry is an interface for things that know how to store OAuthClient objects.

func NewRegistry

func NewRegistry(s rest.StandardStorage) Registry

NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL