blob: 07283fd754bb1e4886455aeb520051e6edae45fe [file] [log] [blame]
/*
Copyright The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by lister-gen. DO NOT EDIT.
package v1alpha1
import (
v1alpha1 "github.com/apache/dubbo-kubernetes/pkg/core/gen/apis/dubbo.apache.org/v1alpha1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/client-go/tools/cache"
)
// AuthenticationPolicyLister helps list AuthenticationPolicies.
// All objects returned here must be treated as read-only.
type AuthenticationPolicyLister interface {
// List lists all AuthenticationPolicies in the indexer.
// Objects returned here must be treated as read-only.
List(selector labels.Selector) (ret []*v1alpha1.AuthenticationPolicy, err error)
// AuthenticationPolicies returns an object that can list and get AuthenticationPolicies.
AuthenticationPolicies(namespace string) AuthenticationPolicyNamespaceLister
AuthenticationPolicyListerExpansion
}
// authenticationPolicyLister implements the AuthenticationPolicyLister interface.
type authenticationPolicyLister struct {
indexer cache.Indexer
}
// NewAuthenticationPolicyLister returns a new AuthenticationPolicyLister.
func NewAuthenticationPolicyLister(indexer cache.Indexer) AuthenticationPolicyLister {
return &authenticationPolicyLister{indexer: indexer}
}
// List lists all AuthenticationPolicies in the indexer.
func (s *authenticationPolicyLister) List(selector labels.Selector) (ret []*v1alpha1.AuthenticationPolicy, err error) {
err = cache.ListAll(s.indexer, selector, func(m interface{}) {
ret = append(ret, m.(*v1alpha1.AuthenticationPolicy))
})
return ret, err
}
// AuthenticationPolicies returns an object that can list and get AuthenticationPolicies.
func (s *authenticationPolicyLister) AuthenticationPolicies(namespace string) AuthenticationPolicyNamespaceLister {
return authenticationPolicyNamespaceLister{indexer: s.indexer, namespace: namespace}
}
// AuthenticationPolicyNamespaceLister helps list and get AuthenticationPolicies.
// All objects returned here must be treated as read-only.
type AuthenticationPolicyNamespaceLister interface {
// List lists all AuthenticationPolicies in the indexer for a given namespace.
// Objects returned here must be treated as read-only.
List(selector labels.Selector) (ret []*v1alpha1.AuthenticationPolicy, err error)
// Get retrieves the AuthenticationPolicy from the indexer for a given namespace and name.
// Objects returned here must be treated as read-only.
Get(name string) (*v1alpha1.AuthenticationPolicy, error)
AuthenticationPolicyNamespaceListerExpansion
}
// authenticationPolicyNamespaceLister implements the AuthenticationPolicyNamespaceLister
// interface.
type authenticationPolicyNamespaceLister struct {
indexer cache.Indexer
namespace string
}
// List lists all AuthenticationPolicies in the indexer for a given namespace.
func (s authenticationPolicyNamespaceLister) List(selector labels.Selector) (ret []*v1alpha1.AuthenticationPolicy, err error) {
err = cache.ListAllByNamespace(s.indexer, s.namespace, selector, func(m interface{}) {
ret = append(ret, m.(*v1alpha1.AuthenticationPolicy))
})
return ret, err
}
// Get retrieves the AuthenticationPolicy from the indexer for a given namespace and name.
func (s authenticationPolicyNamespaceLister) Get(name string) (*v1alpha1.AuthenticationPolicy, error) {
obj, exists, err := s.indexer.GetByKey(s.namespace + "/" + name)
if err != nil {
return nil, err
}
if !exists {
return nil, errors.NewNotFound(v1alpha1.Resource("authenticationpolicy"), name)
}
return obj.(*v1alpha1.AuthenticationPolicy), nil
}