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

org.openl.rules.model.scaffolding.InputParameter Maven / Gradle / Ivy

There is a newer version: 5.27.8.1
Show newest version
package org.openl.rules.model.scaffolding;

public interface InputParameter {

    String getFormattedName();

    String getOriginalName();

    TypeInfo getType();

    In getIn();

    enum In {

        PATH,
        QUERY,
        HEADER,
        COOKIE

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy