blob: c8eeb044e124e4154d615ac1fdafc00d870d14e3 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 v1
import (
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/client-go/tools/cache"
)
// BuildLister helps list Builds.
type BuildLister interface {
// List lists all Builds in the indexer.
List(selector labels.Selector) (ret []*v1.Build, err error)
// Builds returns an object that can list and get Builds.
Builds(namespace string) BuildNamespaceLister
BuildListerExpansion
}
// buildLister implements the BuildLister interface.
type buildLister struct {
indexer cache.Indexer
}
// NewBuildLister returns a new BuildLister.
func NewBuildLister(indexer cache.Indexer) BuildLister {
return &buildLister{indexer: indexer}
}
// List lists all Builds in the indexer.
func (s *buildLister) List(selector labels.Selector) (ret []*v1.Build, err error) {
err = cache.ListAll(s.indexer, selector, func(m interface{}) {
ret = append(ret, m.(*v1.Build))
})
return ret, err
}
// Builds returns an object that can list and get Builds.
func (s *buildLister) Builds(namespace string) BuildNamespaceLister {
return buildNamespaceLister{indexer: s.indexer, namespace: namespace}
}
// BuildNamespaceLister helps list and get Builds.
type BuildNamespaceLister interface {
// List lists all Builds in the indexer for a given namespace.
List(selector labels.Selector) (ret []*v1.Build, err error)
// Get retrieves the Build from the indexer for a given namespace and name.
Get(name string) (*v1.Build, error)
BuildNamespaceListerExpansion
}
// buildNamespaceLister implements the BuildNamespaceLister
// interface.
type buildNamespaceLister struct {
indexer cache.Indexer
namespace string
}
// List lists all Builds in the indexer for a given namespace.
func (s buildNamespaceLister) List(selector labels.Selector) (ret []*v1.Build, err error) {
err = cache.ListAllByNamespace(s.indexer, s.namespace, selector, func(m interface{}) {
ret = append(ret, m.(*v1.Build))
})
return ret, err
}
// Get retrieves the Build from the indexer for a given namespace and name.
func (s buildNamespaceLister) Get(name string) (*v1.Build, error) {
obj, exists, err := s.indexer.GetByKey(s.namespace + "/" + name)
if err != nil {
return nil, err
}
if !exists {
return nil, errors.NewNotFound(v1.Resource("build"), name)
}
return obj.(*v1.Build), nil
}