/** * 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 UpdatePosition extends AbstractRoutine { private static final long serialVersionUID = -848101648; /** * The parameter public.update_position.pos_id. */ public static final Parameter POS_ID = createParameter("pos_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.update_position.name. */ public static final Parameter NAME = createParameter("name", org.jooq.impl.SQLDataType.CLOB, false, false); /** * The parameter public.update_position.description. */ public static final Parameter DESCRIPTION = createParameter("description", org.jooq.impl.SQLDataType.CLOB, false, false); /** * Create a new routine call instance */ public UpdatePosition() { super("update_position", Public.PUBLIC); addInParameter(POS_ID); addInParameter(NAME); addInParameter(DESCRIPTION); } /** * Set the pos_id parameter IN value to the routine */ public void setPosId(Integer value) { setValue(POS_ID, value); } /** * Set the name parameter IN value to the routine */ public void setName_(String value) { setValue(NAME, value); } /** * Set the description parameter IN value to the routine */ public void setDescription(String value) { setValue(DESCRIPTION, value); } }