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

com.commercetools.sunrise.framework.controllers.WithQueryFlow Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.framework.controllers;

import com.commercetools.sunrise.framework.viewmodels.content.PageContent;
import play.mvc.Result;

import java.util.concurrent.CompletionStage;

/**
 * Approach to handle query data (Template Method Pattern).
 * @param  type of the input object, the one queried
 */
public interface WithQueryFlow extends WithContent {

    default CompletionStage showPage(final I input) {
        return okResultWithPageContent(createPageContent(input));
    }

    PageContent createPageContent(final I input);
}