/** * This class is generated by jOOQ */ package classes.routines; import classes.Public; import javax.annotation.Generated; 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 UpdateProductType extends AbstractRoutine { private static final long serialVersionUID = 818617802; /** * The parameter public.update_product_type.t_id. */ public static final Parameter T_ID = createParameter("t_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.update_product_type.title. */ public static final Parameter TITLE = createParameter("title", org.jooq.impl.SQLDataType.CLOB, false, false); /** * The parameter public.update_product_type.description. */ public static final Parameter DESCRIPTION = createParameter("description", org.jooq.impl.SQLDataType.CLOB, false, false); /** * Create a new routine call instance */ public UpdateProductType() { super("update_product_type", Public.PUBLIC); addInParameter(T_ID); addInParameter(TITLE); addInParameter(DESCRIPTION); } /** * Set the t_id parameter IN value to the routine */ public void setTId(Integer value) { setValue(T_ID, value); } /** * Set the title parameter IN value to the routine */ public void setTitle(String value) { setValue(TITLE, value); } /** * Set the description parameter IN value to the routine */ public void setDescription(String value) { setValue(DESCRIPTION, value); } }