blob: ebf8bb85b6a91e8464a712f7095535c4c9f4f1a6 [file] [log] [blame]
/*
* Copyright 2022 Red Hat, Inc. and/or its affiliates.
*
* 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.
*/
package platform
import (
"context"
"github.com/kiegroup/container-builder/client"
"github.com/kiegroup/container-builder/util/log"
v08 "github.com/kiegroup/kogito-serverless-operator/api/v1alpha08"
)
// Action --.
type Action interface {
client.Injectable
log.Injectable
// a user friendly name for the action
Name() string
// returns true if the action can handle the platform
CanHandle(platform *v08.KogitoServerlessPlatform) bool
// executes the handling function
Handle(ctx context.Context, platform *v08.KogitoServerlessPlatform) (*v08.KogitoServerlessPlatform, error)
}
type baseAction struct {
client client.Client
Logger log.Logger
}
func (action *baseAction) InjectClient(client client.Client) {
action.client = client
}
func (action *baseAction) InjectLogger(log log.Logger) {
action.Logger = log
}