All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deltafi.actionkit.action.egress.EgressAction Maven / Gradle / Ivy

There is a newer version: 2.0-rc2
Show newest version
/*
 *    DeltaFi - Data transformation and enrichment platform
 *
 *    Copyright 2021-2023 DeltaFi Contributors 
 *
 *    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 org.deltafi.actionkit.action.egress;

import org.deltafi.actionkit.action.Action;
import org.deltafi.actionkit.action.content.ActionContent;
import org.deltafi.actionkit.action.parameters.ActionParameters;
import org.deltafi.common.types.ActionContext;
import org.deltafi.common.types.ActionType;
import org.deltafi.common.types.DeltaFileMessage;
import org.jetbrains.annotations.NotNull;

/**
 * Specialization class for EGRESS actions.
 * @param 

Parameter class for configuring the egress action */ public abstract class EgressAction

extends Action { public EgressAction(@NotNull String description) { super(ActionType.EGRESS, description); } @Override protected EgressInput buildInput(@NotNull ActionContext context, @NotNull DeltaFileMessage deltaFileMessage) { return EgressInput.builder() .content(new ActionContent(deltaFileMessage.getContentList().getFirst(), context.getContentStorageService())) .metadata(deltaFileMessage.getMetadata()) .build(); } @Override protected final EgressResultType execute(@NotNull ActionContext context, @NotNull EgressInput input, @NotNull P params) { return egress(context, params, input); } /** * Implements the egress execution function of an egress action * @param context The action configuration context object for this action execution * @param params The parameter class that configures the behavior of this action execution * @param egressInput Action input from the DeltaFile * @return A result object containing results for the action execution. The result can be an ErrorResult, a * FilterResult, or an EgressResult * @see EgressResult * @see org.deltafi.actionkit.action.error.ErrorResult * @see org.deltafi.actionkit.action.filter.FilterResult */ public abstract EgressResultType egress(@NotNull ActionContext context, @NotNull P params, @NotNull EgressInput egressInput); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy