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

org.hisp.dhis.rules.models.RuleAction Maven / Gradle / Ivy

package org.hisp.dhis.rules.models;

import javax.annotation.Nonnull;

public abstract class RuleAction
{

    /**
     * @return dynamic data which can be potentially
     * generated by the RuleEngine.
     */
    @Nonnull
    public abstract String data();

    protected RuleAction()
    {
        // stub implementation
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy