/** * This class is generated by jOOQ */ package classes.routines; import classes.Public; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.Parameter; import org.jooq.impl.AbstractRoutine; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.6" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class AddProduct1 extends AbstractRoutine { private static final long serialVersionUID = 1153865134; /** * The parameter public.add_product.RETURN_VALUE. */ public static final Parameter RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_product.name. */ public static final Parameter NAME = createParameter("name", org.jooq.impl.SQLDataType.CLOB, false, false); /** * The parameter public.add_product.type_name. */ public static final Parameter TYPE_NAME = createParameter("type_name", org.jooq.impl.SQLDataType.CLOB, false, false); /** * Create a new routine call instance */ public AddProduct1() { super("add_product", Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER); setReturnParameter(RETURN_VALUE); addInParameter(NAME); addInParameter(TYPE_NAME); setOverloaded(true); } /** * Set the name parameter IN value to the routine */ public void setName_(String value) { setValue(NAME, value); } /** * Set the name parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setName_(Field field) { setField(NAME, field); } /** * Set the type_name parameter IN value to the routine */ public void setTypeName(String value) { setValue(TYPE_NAME, value); } /** * Set the type_name parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setTypeName(Field field) { setField(TYPE_NAME, field); } }