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

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

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

import com.commercetools.sunrise.framework.template.engine.ContentRenderer;
import play.data.FormFactory;

public abstract class SunriseContentFormController extends SunriseContentController {

    private final FormFactory formFactory;

    protected SunriseContentFormController(final ContentRenderer contentRenderer, final FormFactory formFactory) {
        super(contentRenderer);
        this.formFactory = formFactory;
    }

    public FormFactory getFormFactory() {
        return formFactory;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy