/** * This class is generated by jOOQ */ package org.jooq.example.chart.db.routines; import javax.annotation.Generated; import org.jooq.Parameter; import org.jooq.example.chart.db.Public; import org.jooq.impl.AbstractRoutine; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.0", "schema version:public_2", }, date = "2016-06-30T15:44:15.143Z", comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class LastUpdated extends AbstractRoutine<Object> { private static final long serialVersionUID = 980601066; /** * The parameter <code>public.last_updated.RETURN_VALUE</code>. */ public static final Parameter<Object> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.DefaultDataType.getDefaultDataType("trigger"), false, false); /** * Create a new routine call instance */ public LastUpdated() { super("last_updated", Public.PUBLIC, org.jooq.impl.DefaultDataType.getDefaultDataType("trigger")); setReturnParameter(RETURN_VALUE); } }