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

io.github.theangrydev.businessflows.BusinessFlow Maven / Gradle / Ivy

/*
 * Copyright 2016 Liam Williams .
 *
 * This file is part of business-flows.
 *
 * 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 io.github.theangrydev.businessflows;

/**
 * A {@link BusinessFlow} is a biased view of a {@link BusinessCase}.
 * This is the base {@link BusinessFlow} that contains operations that are common to all the biased views.
 *
 * @param  The type of happy object this {@link BusinessFlow} may represent
 * @param    The type of sad object this {@link BusinessFlow} may represent
 */
public interface BusinessFlow extends BusinessCase {

    /**
     * A {@link TechnicalFailure} view of the {@link BusinessFlow}.
     * 

* NOTE: The technical failure will only be present if the failure occurred inside of a {@link BusinessFlow}. * To ensure failures are caught inside a flow, use e.g. {@link HappyPath#happyPathAttempt(Attempt)} at the top of * the scope, before this method is called. *

* * @return A view of the underlying business case as a {@link TechnicalFailure} */ TechnicalFailure ifTechnicalFailure(); /** * A {@link SadPath} view of the {@link BusinessFlow}. * * @return A view of the underlying business case as a {@link SadPath} */ SadPath ifSad(); /** * A {@link HappyPath} view of the {@link BusinessFlow}. * * @return A view of the underlying business case as a {@link HappyPath} */ HappyPath ifHappy(); /** * @return true if the underlying business case is a {@link HappyCase}, false otherwise */ default boolean isHappy() { return ifHappy().isPresent(); } /** * @return true if the underlying business case is a {@link SadCase}, false otherwise */ default boolean isSad() { return ifSad().isPresent(); } /** * @return If the underlying business case is a {@link HappyCase} then the {@link Happy} object, else an {@link IllegalStateException} * @throws IllegalStateException If the underlying business case is not a {@link HappyCase} */ default Happy getHappy() { return ifHappy().get(); } /** * @return If the underlying business case is a {@link SadCase} then the {@link Sad} object, else an {@link IllegalStateException} * @throws IllegalStateException If the underlying business case is not a {@link SadCase} */ default Sad getSad() { return ifSad().get(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy